Requirement in this tutorial are :
- using System.Data.SqlClient;
- using System.Data;
The sample code should be like this :
DataTable table = new DataTable(); SqlConnection dbConn = new SqlConnection("<connection string>"); SqlCommand dbComm = new SqlCommand("<sql statement or procedure name>", dbConn); //set command type is procedure if you are using store procedure //else remove this line dbComm.CommandType = CommandType.StoredProcedure; try { SqlDataAdapter dbAdapter = new SqlDataAdapter(dbComm); dbConn.Open(); dbAdapter.Fill(table); } catch (SqlException sqlEx) { MessageBox.Show(sqlEx.Message); } finally { dbConn.Close(); }
Now change to store value in DataSet .
DataSet dataSetTable = new DataSet(); SqlConnection dbConn = new SqlConnection("<connection string>"); SqlCommand dbComm = new SqlCommand("<sql statement or procedure name>", dbConn); //set command type is procedure if you are using store procedure //else remove this line dbComm.CommandType = CommandType.StoredProcedure; try { SqlDataAdapter dbAdapter = new SqlDataAdapter(dbComm); dbConn.Open(); dbAdapter.Fill(dataSetTable,"<set table name here>"); } catch (SqlException sqlEx) { MessageBox.Show(sqlEx.Message); } finally { dbConn.Close(); }
By Mohd Zulkamal
NOTE : – If You have Found this post Helpful, I will appreciate if you can Share it on Facebook, Twitter and Other Social Media Sites. Thanks =)
0 comments:
Post a Comment