PHP ODBC 连接 H2 数据库
你能帮我一下吗?
我尝试使用 PHP OBDC 连接到 H2 数据库,但收到以下错误消息: “SQL 错误:[unixODBC]未知的身份验证类型,SQLConnect 中的 SQL 状态 28000”
我使用以下命令进行连接: $DSN = "驱动程序=PostgreSQL;服务器=$Srv;端口=5435;数据库=$DB;"; $CID = odbc_connect($DSN,$usr,$pwd);
如何解析连接字符串中的身份验证类型。
谢谢。
could you please assist me with this.
I'm trying to connect to a H2 Database using PHP OBDC and I get the following error message:
"SQL error: [unixODBC]Unknown authentication type, SQL state 28000 in SQLConnect"
I use the following to connect:
$DSN = "Driver=PostgreSQL;Server=$Srv;Port=5435;Database=$DB;";
$CID = odbc_connect($DSN,$usr,$pwd);
How do i parse the Authentication type in the connection string.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试在连接字符串中包含用户和密码
Try including the user and password in the connection string
我设法通过 Postgres SQL 的 PHP 函数来实现这一点。
I managed to get this working through the PHP functions for Postgres SQL.