私は、データアクセスクラスで1つのメソッドを作成して、パラメータを使用してデータベースからデータを選択しました。私はパラメータ化されたクエリを使いたいだけです。パラメータ付きクエリのデータアクセスクラスでメソッドを作成するにはどうすればよいですか?
方法は以下のとおりである。
public DataTable executeSelectQuery(String _query, SqlParameter[] sqlParameter)
{
SqlCommand myCommand = new SqlCommand();
DataTable dataTable = new DataTable();
dataTable = null;
DataSet ds = new DataSet();
try
{
myCommand.Connection = openConnection();
myCommand.CommandText = _query;
myCommand.Parameters.AddRange(sqlParameter);
myCommand.ExecuteNonQuery();
myAdapter.SelectCommand = myCommand;
myAdapter.Fill(ds);
dataTable = ds.Tables[0];
}
catch (SqlException e)
{
return null;
}
finally
{
myCommand.Connection = CloseConnection();
}
return dataTable;
}
が、私は、データをフェッチするために、どのようにパラメータを渡すために、このメソッドを使用する方法を理解できないのですか?
私のクエリは"select password from tblUsers where [email protected]"
かもしれません。どのように@emailをビジネスレイヤーに渡すのですか?
スカラ値を取得するためのデータアクセスクラスのメソッドを作成する方法はありますか?
public string getpasswrd(string unm)
{
con.Open();
string cpaswrd;
cmd1 = new SqlCommand("select password from tbl_login where username='" + unm + "'", con);
cpaswrd = (String)cmd1.ExecuteScalar();
con.Close();
return cpaswrd;
}