0

我有这个 SQL Select 语句来选择用户 ID 等于特定 ID 的购物篮 ID。

我想将查询的结果存储在一个变量中,所以我想我可以做到:

BasketPage.SelectCommand="SELECT BasketID FROM tblBasket WHERE (UserID = '9f96bd94-91b9-4328-8214-4eac179c3a26')"

var BasketID = BasketPage.ExecuteScalar().ToString();

但显然我需要创建一个 SQL 命令的新实例才能使其工作,我该如何为 BasketPage 选择命令执行此操作?

4

2 回答 2

2

我不知道你的BasketPage,但是你没有办法不能使用该ExecuteScalar方法对底层数据库执行这个查询。假设 SQL Server:

using (var connection = new SqlConnection(connString))
    using (var command = connection.CreateCommand()) {
        command.CommandText = "select BasketId from tblBasket where UserId = N'9f96bd94-91b9-4328-8214-4eac179c3a26'";
        command.CommandType = CommandType.Text;

        try {
            var basketId = (string)command.ExecuteScalar(); // Assuming BasketId is a string, since you called ToString() in your question.
        } finally {
            command.Dispose();
            connection.Dispose();
        }
    }
于 2010-12-06T01:07:21.300 回答
1

假设您使用的是 SQL Server,您是否尝试过类似的东西

BasketPage.SelectCommand = 
         new SqlCommand("SELECT BasketID FROM tblBasket WHERE (UserID = '9f96bd94-91b9-4328-8214-4eac179c3a26')",
                      "yourconnectionstring");
于 2010-12-06T01:01:26.253 回答