我的c# 'System.data.sqlclient'不能正常工作

本文关键字:常工作 工作 sqlclient System data 我的 不能 | 更新日期: 2023-09-27 18:05:29

我正在创建一个Windows 10通用应用程序,并需要'数据表'功能,但是当我创建一个DataTable对象

DataTable test = new DataTable();

出现错误

DataTable不包含接受0个参数的构造函数

此外,我还使用子句添加了名称空间:

using System.Data;
using System.Data.SqlClient;

我想知道是否有人知道如何解决这个错误?

另外,当查看智能感知时,我看不到SqlDataAdapter功能,但是,我可以看到SqlDataReader

我想知道有没有人对这些问题有什么见解?

我正在运行Microsoft Visual Studio 2015 Enterprise,并安装了Microsoft SQL Server Management Studio。

编辑

我没有一个名为DataTable的类,我尝试了John Wu所说的并创建了'var'测试变量,我仍然收到相同的错误。

这是我的页面

的完整代码
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using SQLite.Net;
using System.Data.SqlClient;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.UI.Xaml;
using System.Data;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;
// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409
namespace PeriodicTableWin10
{
    /// <summary>
    /// An empty page that can be used on its own or navigated to within a Frame.
    /// </summary>
    public sealed partial class MainPage : Page
    {
        public MainPage()
        {
            this.InitializeComponent();
        }
        string ConnectionString = "Connection string goes here";
        private void ShowElement(string ElementName)
        {
            using (SqlConnection conn = new SqlConnection(ConnectionString))
            {
                try
                {
                    SqlCommand GetElement = new SqlCommand("Select ElementName from tblElement WHERE ElementName=@Element");
                    GetElement.Parameters.Add(new SqlParameter("@Element", ElementName));
                    DataTable test = new DataTable();
                }
                catch(Exception e)
                {
                    e.ToString();
                }
            }
        }
    }
}

我的c# 'System.data.sqlclient'不能正常工作

变化

DataTable test = new DataTable()

var test = new System.Data.DataTable()