ijconnname.sql
来自「derby database source code.good for you.」· SQL 代码 · 共 26 行
SQL
26 行
-- assumes the connections connOne, connTwo are set up already-- and that connThree, connFour failed to be setup correctly (bad URLs)-- expect connOne to be activeshow connections;set connection connOne;values 1;set connection connTwo;values 1;-- connThree doesn't exist, it failed at boot timeset connection connThree;-- connFour doesn't exist, it failed at boot timeset connection connFour;-- connTwo is still activeshow connections;-- no such connection to disconnectdisconnect noName;disconnect connOne;-- connOne no longer existsset connection connOne;disconnect current;-- see no more connections to useshow connections;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?