Return to Snippet

Revision: 9687
at November 17, 2008 20:16 by sanjivarunsahayamhotmailcom


Initial Code
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)

Initial URL


Initial Description
common commands for connecting and using derby through ij.

Initial Title
ij and derby database

Initial Tags


Initial Language
Java