C#如何执行SQL Server 2K的一个命令insert?
要将一些数据insert到sql的表中
请教请教!谢谢先!
------解决方案--------------------在C#中:
SqlConnection conn = new SqlConnection(sqlConn );
SqlCommand cmd = new SqlCommand( "insert into 表(字段1,字段2..) value(值1,值2) ",conn );
conn.Open();
cmd.ExecuteNonQuery();
------解决方案--------------------1。
兄弟啊,你到底是要用 SqlClient 还是 OleDb 呢?
OleDbCommand inst=new OleDbCommand(strInsert,objConnection);
》》》
SqlCommand inst=new SqlCommand(strInsert,objConnection);
2。
建议先看看书,要闷头就 coding