how save recoreed in the database
Answers were Sorted based on User's Feedback
Answer / ajrun
Dim Query
Query="insert into TableName(username)values('" &
txt_username.text & "')"
Dim cmd as sqlclient.sqlcommand=new
sqlclient.sqlcommand(Query,connection)
cmd.ExecuteNonquery()
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / vishnu
System.Data.SqlClient.SqlConnection sqlConnection1 =
new System.Data.SqlClient.SqlConnection("YOUR CONNECTION
STRING");
System.Data.SqlClient.SqlCommand cmd = new
System.Data.SqlClient.SqlCommand();
cmd.CommandType = System.Data.CommandType.Text;
cmd.CommandText = "INSERT Region (RegionID,
RegionDescription) VALUES (5, 'NorthWestern')";
cmd.Connection = sqlConnection1;
sqlConnection1.Open();
cmd.ExecuteNonQuery();
sqlConnection1.Close();
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / venky
string cns=@"server=.\SQLEXPRESS;Database=emp;Integrated Security=SSPI";
cn=new SqlConnection(cns);
string sql = "select * from mytable";
DataSet ds = new DataSet();
SqlDataAdapter adpt=new SqlDataAdapter(sql,cn);
adpt.Fill(ds,"emp1");
.....after altering table....
sqlcommandbuilder cbdr=new sqlcommandbuilder(adpt);
adpt.Update(ds,"emp1");
your changes automaically save into databases...
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / y.gangi reddy
SqlConnection cn = new SqlConnection("user id=sa;pwd=xxx;database=yyy;data source=.");
SqlDataAdapter da = new SqlDataAdapter("select * from tablename", cn);
DataSet ds = new DataSet();
da.Fill(ds, "tablename");
Is This Answer Correct ? | 1 Yes | 2 No |
Are windows forms still used?
How do I change the console application in windows?
What are different options to store state in ASP.NET applications?
Which Isolation level is helps to read uncommitted data?
What is form and meaning?
What are the different cloud platforms?
What is difference between winforms and windows forms?
how can u split a column header in gridview using C#.net
Which is the global event handler for unhandled exceptions in an ASP.NET applications?
Extension methods can be both static and normal class methods. Yes/No?
What is the use of form?
how to create a set up in vb.net for desktop application please say me steps with examples