OLE DB 异常 - 数据库/用户/密码太大
我正在尝试使用 OleDbConnection 和连接字符串连接到数据库,try-catch 语句中给出的错误是“数据库/用户/密码太大”。 该语句是什么意思?如何解决此问题以便连接到我的数据库? 我的数据库使用 SQLBase 驱动程序。
I'm trying to connect to a database using OleDbConnection and a connection string, the error given within the try-catch statement is 'database/user/password is too large'. What does that statement mean, and how can I solve this problem so I can connect to my database? My database is using a SQLBase driver.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
连接字符串中可能可以包含数据库、用户和/或密码。 其中一个或多个太大。
The connection string probably can have a database, user, and/or password in it. One or more of them is too large.
SQLBase 对数据库、用户和密码参数的长度有限制。 数据库名称的最大长度为 16 个字符,用户和密码字段的最大长度为 8 个字符。
SQLBase has restrictions on the length of the database, user, and password parameters. The database name has a maximum of 16 characters, and the user and password fields have a maximum length of 8 characters.