如何使用多客户端支持的ADO.Net参数

发布于 2024-10-17 19:49:13 字数 339 浏览 1 评论 0原文

我正在构建一个 ado.net 包装器,它可以基本上从 SQl、Oledb、Odbc、Oracle、Sqlite 等连接任何数据库(由 ADO.Net 支持)。我实现了连接和所有其他基本功能。但是当我的查询需要参数从其他级别传递时,我被困在那里。我知道为此目的我们使用 IDataParameterCollection 或 IDbDataParameters 等。但不知道如何实现。

所以请大家帮帮我。这将是一个很大的帮助。

或者

您可以简而言之,我需要一种独立的传递参数的方式,该方式将在所有类型的客户端中使用,无论是 SqlClient、OracleClient 还是任何其他客户端。

谢谢!!!

I am building a ado.net wrapper that can connect with any database(supported by ADO.Net)basically from SQl, Oledb,Odbc,Oracle,Sqlite etc. I implemented the connection and all other basic things. But at a point where my queries need parameter to pass from other levels , i am stucked there. I know for that purpose we use IDataParameterCollection or IDbDataParameters etc. But do not know the way to implement.

So you guys are requested to please help me out. It would be a great help.

OR

You can say in short, i need an independent way of passing parameters that will be used in all type of clients, whether it is SqlClient, OracleClient or any other client.

Thanks!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤凫 2024-10-24 19:49:13

好的。在用户端:

SqlParameter s1 = new SqlParameter();
s1.Direction = ParameterDirection.Input;
s1.ParameterName = "s1";

SqlParameter s2 = new SqlParameter();
s2.Direction = ParameterDirection.Input;
s2.ParameterName = "s2";

this.ExecuteScalar("query", new IDataParameter[] { s1, s2 });

在另一端:

public int ExecuteScalar(string commandText, IDataParameter[] param)
      {
         IDbCommand cmd = connection.CreateCommand();
         cmd.CommandText = commandText;
         foreach (IDataParameter p in param)
            cmd.Parameters.Add(p);
      }

Ok. On the user side :

SqlParameter s1 = new SqlParameter();
s1.Direction = ParameterDirection.Input;
s1.ParameterName = "s1";

SqlParameter s2 = new SqlParameter();
s2.Direction = ParameterDirection.Input;
s2.ParameterName = "s2";

this.ExecuteScalar("query", new IDataParameter[] { s1, s2 });

And on the other side :

public int ExecuteScalar(string commandText, IDataParameter[] param)
      {
         IDbCommand cmd = connection.CreateCommand();
         cmd.CommandText = commandText;
         foreach (IDataParameter p in param)
            cmd.Parameters.Add(p);
      }
恋竹姑娘 2024-10-24 19:49:13

(cmd 是 DbCommand 实例)

DbParameter p = cmd.CreateParameter();
p.Direction = ParameterDirection.Input;
p.Value = the_value;
p.ParameterName = the_param_name;
p.DbType = ...

cmd.Parameters.Add(p);

然后,查询类似于 select * from table where field = ?。但是,请注意顺序或创建参数。

? 小丑应该是独立的。

(cmd is the DbCommand instance)

DbParameter p = cmd.CreateParameter();
p.Direction = ParameterDirection.Input;
p.Value = the_value;
p.ParameterName = the_param_name;
p.DbType = ...

cmd.Parameters.Add(p);

Then, queries are like select * from table where field = ?. But, be careful with the order or creating parameters.

The ? joker should be independent.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文