⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ij.sql

📁 derby database source code.good for you.
💻 SQL
字号:
-- this test shows the ij commands in use,-- and what happens when invalid stuff is entered.-- no driver loaded yet, detected off of the url-- this one is a bad url:connect 'cloudscape:wombat';-- this one will work.connect 'jdbc:derby:wombat';-- no connection yet, this will failcreate table t (i int);-- no table yet, this will failselect i from t;-- invalid syntax ... incomplete statementsdriver;connect;prepare;execute;run;remove;-- should fail because procedure is an illegal statement nameprepare procedure as 'select * from bar';-- should fail because text is passed on to derby, which-- barfs on the unknown statement name. execute procedure is-- a foundation 2000 conceptexecute procedure sqlj.install_jar( 'file:c:/p4c/systest/out/DigIt.jar', 'SourceWUs', 1 );-- and, the help output:help;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -