/ Published in: Java
common commands for connecting and using derby through ij.
Expand |
Embed | Plain Text
connect 'jdbc:derby:your_database_name;create=true;'; (connects to and optionally creates the specified database name) show tables; (shows all tables) describe table_name; (shows column definitions for a specified table) run 'path_to_script_file'; (runs a script file) exit; (exits ij)
You need to login to post a comment.
