如何在HTML页面中显示Firebird表结构?

发布于 2024-10-03 19:15:03 字数 766 浏览 2 评论 0原文

我尝试使用下面的代码在HTML页面中显示表结构:

<HTML>
<HEAD>
<TITLE>PHP + Firebird / Interbase test (connection)</TITLE>
</HEAD>
<BODY>
<H3>FB Connect test.</H3>
<?php
// DB definition of account
define("DBNAME","xx.xxx.xx.xxx:D:\DATABASE\OCS DATA.FDB"); // data bsse name
define("DBUSER","USER"); // user name
define("DBPASS","USER"); // password

// DB connection
$dbh = ibase_connect(DBNAME,DBUSER,DBPASS);
echo ibase_errmsg();
if ($dbh == FALSE) {
echo 'could not connect to DB<BR>';
} else {
echo 'success to connect to DB<BR>';
}
$ibsql = "SHOW TABLE DOC_TO";
echo ibase_errmsg();
$result=ibase_query($ibsql);
echo $result;
?>

</BODY>
</HTML>

为什么它只显示结果为“成功连接到数据库”?

I try to use the code below to show table structure in a HTML page:

<HTML>
<HEAD>
<TITLE>PHP + Firebird / Interbase test (connection)</TITLE>
</HEAD>
<BODY>
<H3>FB Connect test.</H3>
<?php
// DB definition of account
define("DBNAME","xx.xxx.xx.xxx:D:\DATABASE\OCS DATA.FDB"); // data bsse name
define("DBUSER","USER"); // user name
define("DBPASS","USER"); // password

// DB connection
$dbh = ibase_connect(DBNAME,DBUSER,DBPASS);
echo ibase_errmsg();
if ($dbh == FALSE) {
echo 'could not connect to DB<BR>';
} else {
echo 'success to connect to DB<BR>';
}
$ibsql = "SHOW TABLE DOC_TO";
echo ibase_errmsg();
$result=ibase_query($ibsql);
echo $result;
?>

</BODY>
</HTML>

Why does it just show the result as "success to connect to DB"?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

御弟哥哥 2024-10-10 19:15:03

Firebird 似乎没有特定于 MySQL

文档 指出 SHOW TABLES 命令仅在isql 命令行工具中可用,而无处可用别的。

在 MySQL 中,您可以执行 SHOW TABLES。你
可以在Firebird的isql中使用相同的
命令行工具,但没有其他地方。

它继续提供以下 SQL 代码作为大致等效的解决方案:

从 RDB$RELATIONS 中选择 RDB$RELATION_NAME;

此查询将向您显示两个系统
和用户表。选择用户表
仅使用此:

`从 RDB$RELATIONS 中选择 RDB$RELATION_NAME,其中 RDB$SYSTEM_FLAG = 0;

也许您可以通过查询 RDB$RELATIONS 表(或者可能是 Firebird 提供的其他一些运行时信息表)来获得与您试图完成的内容相同的内容。另请参阅 Lorenzo Alberton 关于从 Firebird 数据库中提取 META 信息的帖子。

Firebird does not seem to have a SHOW TABLE or SHOW TABLES command which are specific to MySQL.

The documentation on the IBphoenix web site states that the SHOW TABLES command is only available in the isql command line tool and nowhere else.

In MySQL, you can do SHOW TABLES. You
can use the same in Firebird's isql
command-line tool, but nowhere else.

It goes on and provides the following SQL code as a roughly equivalent solution:

SELECT RDB$RELATION_NAME FROM RDB$RELATIONS;

This query will show you both system
and user tables. To select user tables
only, use this:

`SELECT RDB$RELATION_NAME FROM RDB$RELATIONS WHERE RDB$SYSTEM_FLAG = 0;

Maybe you can get something equivalent from what you were trying to accomplish by querying the RDB$RELATIONS table (or maybe some other runtime information tables provided by Firebird). See also Lorenzo Alberton's post on extracting META information from a Firebird database.

久夏青 2024-10-10 19:15:03

请注意,在 PHP 中您应该使用单引号 $reqest = 'select ...'; 否则 $ 符号将被翻译为 PHP 变量符号。

Note than in PHP you should use single quotes $reqest = 'select ...'; otherwise the $ symbol will be translated as PHP variable sign.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文