这是我的代码
public class LoginFunction
{
public DataTable User (string username, string pword)
{
using (IDbConnection connection = new System.Data.SqlClient.SqlConnection(ConnectionHelper.CnnVal("GymDB")))
{
var query = ("Select * from [USER] where username = '{username}' and password = '{pword}'");
SqlDataAdapter sda = new SqlDataAdapter(query, connection);
DataTable dtbl = new DataTable();
sda.Fill(dtbl);
}
}
}
}
我得到的错误是“无法从'System.Data.IDbConnection'转换为'string'”。
错误在于 SqlDataAdapter 的连接参数 - 我认为这会从 IDbConnection 获取 SQL 连接。
MM们
相关分类