Tip of the day :ISQL console add command
ISQL has an “add” command to interactively insert records in a table.
Syntax is “add table_name” then it asks for values of each field
More about this command on Firebird-Devel list
ISQL has an “add” command to interactively insert records in a table.
Syntax is “add table_name” then it asks for values of each field
More about this command on Firebird-Devel list
Claudio answered to a “new feature” request
This command exists in all Firebird versions:
SQL> set stats on;
SQL> select 1 from rdb$database;
CONSTANT
============
1
Current memory = 10135512
Delta memory = 164708
Max memory = 10263380
Elapsed time= 0.11 sec
Buffers = 2048
Reads = 12
Writes 0
Fetches = 157
SQL>
Elapsed time is the time the query needed to complete. Run it a second time and the elapsed time is only 0.02 seconds because metadata is already loaded.
FSQL command line utility for executing sql scripts Alternative to ISQL, with some enhancements added by Ivan Prenosil
http://www.volny.cz/iprenosil/interbase/fsql_1_6_15.zip
Also there is Graphical tool too
http://www.volny.cz/iprenosil/interbase/wfsql_1_6_15.zip