Kohana v3数据库,如何获取表结构?

发布于 2024-11-26 03:56:56 字数 240 浏览 1 评论 0原文

如何使用KohanaPHP框架和数据库模块获取mysql表结构?

我已经尝试过这个:

$query = DB::query(NULL, 'DESCRIBE table_name');
$result = $query->execute();

但它只返回表中的列数,并且 foreach 循环失败。

有没有其他方法来获取表结构或者如何更新上面的代码才能正常工作?

How can I using KohanaPHP framework and database module get mysql table structure?

I've tried this:

$query = DB::query(NULL, 'DESCRIBE table_name');
$result = $query->execute();

But it only returns number of columns in table, and foreach loop failed.

Is there any other way to get table structure or how can I update code above to works properly?

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

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

发布评论

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

评论(1

别闹i 2024-12-03 03:56:56

试试这个:

$query = DB::query(NULL, 'SHOW FULL COLUMNS FROM table_name');
$result = $query->execute();

编辑

您需要指定 DB::query() 的查询类型将仅返回受影响的行数。

$query = DB::query(Database::SELECT, 'SHOW FULL COLUMNS FROM table_name');
$result = $query->execute();

这会给你你期望的结果。

Try this:

$query = DB::query(NULL, 'SHOW FULL COLUMNS FROM table_name');
$result = $query->execute();

EDIT

You need to specify the type of query of DB::query() will just return the number of affected rows.

$query = DB::query(Database::SELECT, 'SHOW FULL COLUMNS FROM table_name');
$result = $query->execute();

This will give you the result you expect.

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