📄 ijconnname.sql
字号:
-- 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -