PDF(US Ltr) - 1.2Mb
PDF (A4) - 1.2Mb
可以在打开连接会话时,使用 类似 URI 的连接字符串或键值对 中的 schema
属性指定会话的默认架构。Session
类的 getDefaultSchema()
方法返回 Session
的默认架构。
如果在连接时未选择默认架构,则可以使用 Session
类的 setCurrentSchema()
函数设置当前架构。
var mysqlx = require('mysqlx');
// Direct connect with no client-side default schema specified
var mySession = mysqlx.getSession('user:password@localhost');
mySession.setCurrentSchema("test");
请注意,setCurrentSchema()
不会更改会话的默认架构,该架构在整个会话期间保持不变,如果未在连接时设置,则保持为 null
。可以通过 getCurrentSchema()
方法返回由 setCurrentSchema()
设置的架构。