我正在尝试通过ODBC连接从C#(.NET 3.5)调用本地SQL Server(2008 R2)实例上的存储过程。我遇到的问题是存储的proc似乎没有接收输入参数。
我也设置了探查器 - 没有看到任何输入参数进入数据库。
发生了什么事! :(
PS - 请不要建议使用任何不同的技术。
的App.config
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<connectionStrings>
<add name="MYDB" connectionString="Driver={SQL Server};Server=localhost;Database=MYDB;Uid=user_name;Pwd=password;"/>
</connectionStrings>
</configuration>
Program.cs的
using System;
using System.Configuration;
using System.Data;
using System.Data.Odbc;
namespace DatabaseTest
{
class Program
{
static void Main(string[] args)
{
string mssqlConnectionString = ConfigurationManager.ConnectionStrings["MYDB"].ConnectionString;
using (OdbcConnection connection = new OdbcConnection(mssqlConnectionString))
{
connection.Open();
using (OdbcCommand command = new OdbcCommand("usp_Get_UserInfo", connection))
{
command.CommandType = CommandType.StoredProcedure;
command.CommandTimeout = 0;
command.Parameters.Add(new OdbcParameter("@username", OdbcType.VarChar, 32) { Value = "Bob", IsNullable = true, });
using (OdbcDataReader reader = command.ExecuteReader())
{
while (reader.Read())
{
string userName = reader["USER_NAME"].ToString();
string userInfo = reader["USER_INFO"].ToString();
Console.WriteLine(String.Format("{0} | {1}",
userName, userInfo));
}
reader.Close();
}
}
connection.Close();
}
}
}
}
存储过程
USE [MYDB]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[usp_Get_UserInfo]
@username varchar(32) = null
AS
BEGIN
SET NOCOUNT ON;
SELECT u.[USER_NAME]
, u.USER_INFO
FROM dbo.UserDataTable u
WHERE u.[USER_NAME] = ISNULL(@username, u.[USER_NAME)
END
结果
[USER_NAME] | [USER_INFO]
Alice | Alice's info
Bob | Bob's info
Charlie | Charlie's info
答案 0 :(得分:1)
经过一番激烈的谷歌搜索后找到答案。
Execute Parameterized SQL StoredProcedure via ODBC
似乎odbc连接需要以非常有趣的方式调用存储过程。
我没有得到与该问题中的错误相同的错误,因为我的存储过程有一个可以为空的参数。因此,我没有收到任何错误。
using (OdbcCommand command = new OdbcCommand("{call usp_Get_UserInfo (?)}", connection))