作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道如何一次执行多个 SQL 命令。
此时我是这样做的:
using (SqlConnection sqlConnection1 = new SqlConnection(connectionString))
{
using (SqlCommand cmd = new SqlCommand())
{
cmd.CommandText = "SELECT nome FROM teste";
cmd.CommandType = CommandType.Text;
cmd.Connection = sqlConnection1;
sqlConnection1.Open();
// execute the command
SqlDataReader rdr = cmd.ExecuteReader();
while (rdr.Read())
{
listBox1.Items.Add(rdr["name"].ToString());
}
}
}
但是我该怎么做才能执行
use [databaseX]
SELECT nome FROM teste
在我的 C# 程序中?
最佳答案
用分号 (;
) 分隔多个语句。
(顺便说一句,通常不需要 use
语句,因为它已在您的连接字符串中设置。)
关于c# - 如何在 C# 中执行超过 1 行的 sql 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8216152/
我是一名优秀的程序员,十分优秀!