how save recoreed in the database

Answers were Sorted based on User's Feedback



how save recoreed in the database..

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

how save recoreed in the database..

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

how save recoreed in the database..

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

how save recoreed in the database..

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

Post New Answer

More Dot Net WindowsForms Interview Questions

What are ACID properties of a transaction in DBMS (Database Management System)?

2 Answers   Arctern,


What are controls in windows forms?

0 Answers  


what is acomponent in windows applications?

2 Answers  


Which method of the messagebox class is used to display a message in the message box?

0 Answers  


What is boxing and how it is done internally?

4 Answers   Microsoft,






Which property of textbox cannot be changed at runtime?

2 Answers  


What is form design?

0 Answers  


What is the use of OLE?

2 Answers  


Explain how save rerecord in the database?

0 Answers  


how barcode create in the report

2 Answers   Wipro,


Explain how insert record in the database?

0 Answers  


For a server control, you need to have same properties like color maxlength, size, and allowed character throughout the application. How do you handle this?

1 Answers   Microsoft,


Categories