如何在C#中使用通用数据库连接调用存储过程?

时间:2012-06-20 17:16:09

标签: c# ado.net odbc sqlclient idbcommand

我必须使用ODBC连接调用C#(。Net 2.0)中的存储过程,有时使用SQLClient。我的未来我们也可以与Oracle沟通。

我的存储过程有输入/输出参数和返回值。

CREATE PROCEDURE myProc (@MyInputArg varchar(10), @MyOutputArg varchar(20) output) AS (...) return @@ERROR

我的问题是我找不到存储命令的方法,无论客户端是什么,它都可以是通用的。我正在使用 IDbCommand 对象。

使用ODBC连接我必须定义:

objCmd.CommandText = "? = CALL myProc (?,?)";

在SQLclient上下文中:

objCmd.CommandText = "myProc";

我真的不想解析我的命令,我确信有更好的方法可以使用通用的命令!

为了帮助人们重现,您可以在下面找到我如何建立通用数据库连接。在我的上下文中,提供程序对象是从配置文件中定义的。

// My DB connection string, init is done from a configuration file
string myConnectionStr = "";

// Provider which defined the connection type, init from config file
//object objProvider = new OdbcConnection(); //ODBC
object objProvider = new SqlConnection(); // SQLClient

// My query -- must be adapted switch ODBC or SQLClient -- that's my problem!
//string myQuery = "? = CALL myProc (?,?)"; // ODBC
string myQuery = "myProc"; // SQLClient

// Prepare the connection
using (IDbConnection conn = (IDbConnection)Activator.CreateInstance(typeof(objProvider), myConnectionStr ))
{
    // Command creation
    IDbCommand objCmd = (IDbCommand)Activator.CreateInstance(typeof(objProvider));
    objCmd.Connection = conn;

    // Define the command
    objCmd.CommandType = CommandType.StoredProcedure;
    objCmd.CommandTimeout = 30;
    objCmd.CommandText = myQuery;

    IDbDataParameter param;

    // Return value
    param = (IDbDataParameter)Activator.CreateInstance(typeof(objProvider));
    param.ParameterName = "RETURN_VALUE";
    param.DbType = DbType.Int32;
    param.Direction = ParameterDirection.ReturnValue;
    objCmd.Parameters.Add(param);

    // Param 1 (input)
    param = (IDbDataParameter)Activator.CreateInstance(typeof(objProvider));
    param.ParameterName = "@MyInputArg";
    param.DbType = DbType.AnsiString;
    param.Size = 10;
    param.Direction = ParameterDirection.Input;
    param.Value = "myInputValue";
    objCmd.Parameters.Add(param);

    // Param 2 (output)
    param = (IDbDataParameter)Activator.CreateInstance(typeof(objProvider));
    param.ParameterName = "@MyOutputArg";
    param.DbType = DbType.AnsiString;
    param.Size = 20;
    param.Direction = ParameterDirection.Output;
    objCmd.Parameters.Add(param);

    // Open and execute the command
    objCmd.Connection.Open();
    objCmd.ExecuteReader(CommandBehavior.SingleResult);
    (...) // Treatment
}

感谢您的时间。

此致 蒂鲍特。

1 个答案:

答案 0 :(得分:1)

你可以创建一个围绕IDbCommand和实现的包装器(但只有你想要:)。

//Note the IDisposable interface
public class MultiSqlCommand : IDisposable
{
  //DbConnectionType  is a custom enum
  public MultiSqlCommand(DbConnectionType connType, DbConnection conn)
  {
    //initialize members
    ...
    switch(connType) 
    {
      case ADO:
        _cmd = new SqlCommand(_connection);
        break;
      case ODBC:
        ...
    }
  }

  //As param name you pass the undecorated parameter name (no @, ?, etc.)
  public void AddParameter(string strippedName, object value) 
  {
    //this should be an internal function which gives you an SqlParameter formatted for your specific DbConnectionType
    object parameter = GetSqlParam(strippedName, value);
    _cmd.Parameters.Add(object);
  }
}

添加参数后,您可以准备执行命令。您可以通过属性公开它并在此类之外执行它,或者扩展API并添加一些方法来执行它并获得结果。无论你觉得什么方便。

注意:在IDisposable实现中,您应该处置IDbCommand实例(如果不为null)。这非常重要,否则你会泄漏记忆。

如果建议不明确,请告诉我,我会尝试填写更多细节。 我想说,解决方案很简单。你可以更进一步,在整个ADO.NET命令和参数支持的基础上创建一个抽象层,但我认为这不是必要的。这不像你没有写一个完整的数据提供者。