谁有关于数据库系统的文档,我就要搭建时建立的表,和功能语句和脚本语句

写作技巧2021-06-15 16:20:28admin2

  string ser = "server=。;database=“ textBox1。Text ”;uid=sa;pwd=sa";
SqlConnection conn = new SqlConnection(ser);
SqlCommand cm = new SqlCommand(
"create table tableName (col1 int,col2 varchar(10))", conn);//创建表的sql语句
try
{
conn。
  Open();
cm。ExecuteNonQuery();
}
finally
{
conn。
  Close();
}。

相关推荐

猜你喜欢

大家正在看

换一换