在SQL中,访问其他模式中的表很简单:
select *
from other_schema.t
where ...
在科尔马我该怎么做?我实际要做的是访问information_schema.tables
表。因此,用defdb
定义另一个db
是没有帮助的。
我试图定义实体,但是失败了。
(defentity information_schema.tables)
我必须知道,在定义实体时,有一种方法可以指定基表。当指定基表时,它允许使用.
设置模式。
(defentity tables
(table :information_schema.tables))
这对于访问information_schema.tables
表非常有效,无需定义其他数据库。
您应该能够通过定义另一个数据库来实现这一点。我可以创建这样的数据库:
CREATE database my_db;
USE my_db;
CREATE TABLE stuff (
things VARCHAR(255)
);
INSERT INTO stuff (things) VALUES ("some things");
现在我定义了两个Korma数据库和实体,并对它们进行查询:
(defdb my-db (mysql {:host "localhost"
:port 3306
:db "my_db"
:user "root"
:password nil}))
(defdb information-schema (mysql {:host "localhost"
:port 3306
:db "information_schema"
:user "root"
:password nil}))
(defentity stuff)
(defentity information-schema)
(select stuff
(database my-db))
;; => ({:things "some things"})
(select TABLES
(database information-schema)
(fields :TABLE_SCHEMA :TABLE_NAME)
(where {:TABLE_SCHEMA "my_db"}))
;; => ({:TABLE_NAME "stuff", :TABLE_SCHEMA "my_db"})