如何使用多客户端支持的ADO.Net参数
我正在构建一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好的。在用户端:
在另一端:
Ok. On the user side :
And on the other side :
(cmd 是 DbCommand 实例)
然后,查询类似于
select * from table where field = ?
。但是,请注意顺序或创建参数。?
小丑应该是独立的。(cmd is the DbCommand instance)
Then, queries are like
select * from table where field = ?
. But, be careful with the order or creating parameters.The
?
joker should be independent.