Einfache und praktische Datenlese- und Datenoperationsmethoden. Fügen Sie sie in das Programm ein und rufen Sie
die Lesemethode direkt auf:
public DataSet Query(string SQLText)
{
SqlConnection myConnection=new SqlConnection(ConfigurationSettings.AppSettings["conn"]);
DataSet ds = new DataSet();
SqlDataAdapter myCommand = new SqlDataAdapter(SQLText,myConnection);
myCommand.Fill(ds);
return ds;
}
Operationsmethode:
//Abfrage ausführen und SqlDataReader zurückgeben
öffentlicher SqlDataReader QueryByReader(string sqlstr)
{
if (sqlstr==String.Empty)
null zurückgeben;
SqlConnection myConnection = new SqlConnection(ConfigurationSettings.AppSettings["connstring"]);
SqlCommand myCommand = new SqlCommand(sqlstr, myConnection.Open
();
SqlDataReader result = myCommand.ExecuteReader(CommandBehavior.CloseConnection);
Ergebnis zurückgeben;
}
//Betreiben Sie die Datenbank und geben Sie keine Ergebnisse zurück
public bool OperateDB(string sqlstr)
{
if (sqlstr==String.Empty)
return false;
SqlConnection myConnection = new SqlConnection(ConfigurationSettings.AppSettings["connstring"]);
SqlCommand myCommand = new SqlCommand(sqlstr, myConnection.Open
();
myCommand.ExecuteNonQuery();
myConnection.Close();
return true;
}