The SQLCLient program is a Java application that is designed to use JDBC to access any SQL database, display the database's tables, display each table's column definitions, as well as provide for select, update, insert, and delete commands.
The SQLClient attempts to be generic, so there are certain things it is not good for. SQLClient does not make a good tool for db maintenance or searching. It is not intended as a generic tool for db users. It is more of an example of how to write JDBC code, and as a tool for the JDBC developer who needs to see what tables are defined and how, experiment with selects, and so on. Also helpful for developers, SQLClient allows you to use multiple JDBC drivers, and conveniently switch between drivers while you work, to let you see differences between drivers and their operation.
This software is licensed to you
under the GNU General Public License.
Please read the license before using this package.
To start the SQLClient, you must concern yourself with two issues. First, you must successfully invoke the java interpretter and access the SQLClient classes, which will also require that you have the JFC (Swing) properly installed. Second, you must properly configure the application's properties to access the JDBC driver, as well as access the databases you are interested in.