These files demonstrate work of Linter JDBC driver for JDK v 1.1 .

Files list :

Config.java
ConnectDemo.java
StatementDemo.java
ResultSetExDemo.java
PreparedStatementDemo.java
StoredProcDemo.java
jrun.sh
krun.sh
qrun.sh

===================================================================

1) 	Config
	Common class for all samples. Contains 3 constants - server URL, 
	username and password.

2) 	Connect
	Opens connection and closes it.
	
3)	StatementDemo
	
   	Creates table:
	create table test1 (a int, b char(20));");
	
	Inserts 2 strings into the table:
	insert into test1 values(1,'First string');
	insert into test1 values(2,'Another string');
	
        Makes selection from the table and prints the first two columns:
	select * from test1;
	
	Drops table:
	drop table test1;

4)	ResultSetExDemo
        Creates table as in 3) and inserts 3 rows: 
	insert into test1 values(1,'First string');
	insert into test1 values(2,'Another string');
	insert into test1 values(3,'Third string');

        Makes select and moves through selection:
          Up to the end in direct order
          Previous row
          Current + 1
          First row
	
5) 	PreparedStatementDemo

        Works with BLOB and prepared statements
				
6)	CallableStatementDemo

7) 	StoredProcDemo	

==============================================================================

jrun.sh and krun.sh are used to simplify samples execution (for JDK and kaffe)
These scripts set CLASSPATH and LD_LIBRARY_PATH

./jrun.sh <ClassName> <Params>

Example:
./jrun ConnectDemo

qrun.sh can be used to run samples in QNX. Remember, that you must have
file classes.zip from JDK1.x to run this samples and you must write
correct path to this file in qrun.sh before you execute it.
