I have there 2 codes on how to connect to SQL Server 2005 database. code 1 are using Dataset, and Dataadapter, code 2, didn't used neither. Can anyone please help me explain what is the differences and advatages/disadvantages on both programs..thankz
code1
//create connection, dataset, dataadapter
System.Data.SqlClient.SqlConnection con;
DataSet ds1;
System.Data.SqlClient.SqlDataAdapter da;
int MaxRows = 0; //hold how many rows in the dataset
int inc = 0; //change the current Row number
private void Form1_Load(object sender, EventArgs e)
{
con = new System.Data.SqlClient.SqlConnection();
ds1 = new DataSet();
//setting the connection string
con.ConnectionString = "Data Source=.\\SQLEXPRESS;AttachDbFilename=C:\\Users\\Administrator\\Documents\\Visual Studio 2008\\Projects\\WindowsFormsApplication5\\WindowsFormsApplication5\\Test2.mdf;Integrated Security=True;Connect Timeout=30;User Instance=True";
con.Open();
//create object for 'da' variable
string sql = "SELECT * From tblOutbox";
da = new System.Data.SqlClient.SqlDataAdapter(sql, con);
da.Fill(ds1, "tblOutbox");
NavigateRecords();
//get the number of rows in DataSet
MaxRows = ds1.Tables["tblOutbox"].Rows.Count;
con.Close();
}
code 2:
System.Data.SqlClient.SqlConnection sqlConnection1 =
new System.Data.SqlClient.SqlConnection("Data Source=.\SQLEXPRESS;AttachDbFilename=F:\Test2.mdf;Integrated Security=True;User Instance=True");
//command queries
System.Data.SqlClient.SqlCommand cmd = new System.Data.SqlClient.SqlCommand();
cmd.CommandType = System.Data.CommandType.Text
//cmd.CommandText = "INSERT INTO tblSend (ip, msg, date) SELECT ip, msg, date FROM tblOutbox";
cmd.Connection = sqlConnection1;
sqlConnection1.Open(); //open con
cmd.ExecuteNonQuery(); //execute query
sqlConnection1.Close(); //close con