PHP ODBC 连接 H2 数据库

发布于 2024-12-03 20:30:41 字数 267 浏览 1 评论 0原文

你能帮我一下吗?

我尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

怼怹恏 2024-12-10 20:30:41

尝试在连接字符串中包含用户和密码

$DSN = "Driver=PostgreSQL;Server=$Srv;Port=5435;Database=$DB;UID=$usr;PWD=$pwd";

Try including the user and password in the connection string

$DSN = "Driver=PostgreSQL;Server=$Srv;Port=5435;Database=$DB;UID=$usr;PWD=$pwd";
疯狂的代价 2024-12-10 20:30:41

我设法通过 Postgres SQL 的 PHP 函数来实现这一点。

$conn = pg_connect("host=[host] port=[port number] dbname=[database name] user=[username] password=[password]");

I managed to get this working through the PHP functions for Postgres SQL.

$conn = pg_connect("host=[host] port=[port number] dbname=[database name] user=[username] password=[password]");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文