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.
我读到连接到 C# Microsoft 不支持的数据库,我们可以使用 ODBC 连接。我的问题是 C# 中连接字符串的示例是什么连接到红砖数据库
你必须下载红砖数据库的odbc驱动并安装。
然后在中添加一个DSN(数据源名称)
控制面板 > 管理工具 > odbc
然后设置你的连接字符串:
OdbcConnection odbc = new OdbcConnection("Dsn=RedBrickDSN;uid=xxx;PWD=yyy");