Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有(非托管)应用程序,它使用 ODBC 来访问数据库。这个应用程序将调用一些带有一个参数的C#(托管)子程序:应用程序正在使用的连接的ODBC句柄,因此子程序也可以使用它来连接数据库。
不幸的是System.Data.OdbcConnection,不能通过现有的句柄来初始化。
System.Data.OdbcConnection
可以使用现有的 ODBC 连接,还是我必须创建新的一种形式的连接字符串?
使用旧连接而不是创建新连接是否有意义?