Click here to Skip to main content
15,898,134 members

Comments by RahulAhire26 (Top 4 by date)

RahulAhire26 25-Apr-14 6:18am View    
the error has not been solved. the Error occurs in the line:- da.Fill(ds, "Registration");
Am i using wrong syntax?
RahulAhire26 25-Apr-14 4:37am View    
i have checked there is no spelling mistake
RahulAhire26 25-Apr-14 4:31am View    
it didn't worked for me the error is still there.
RahulAhire26 25-Apr-14 4:29am View    
the code i wrote was as follows:-

SqlConnection cnn = new SqlConnection();
cnn.ConnectionString = System.Configuration.ConfigurationManager.ConnectionStrings["sqlconnection"].ConnectionString;
cnn.Open();
SqlCommand cmd = new SqlCommand();
cmd.CommandText = "select * from Registration";
cmd.Connection = cnn;
SqlDataAdapter da = new SqlDataAdapter(cmd);
da.SelectCommand = cmd;
DataSet ds = new DataSet();
da.Fill(ds,"Registration");
SqlCommandBuilder cb = new SqlCommandBuilder(da);
DataRow drow = ds.Tables["Registration"].NewRow();
i have use Registration as my table name.