#!/bin/bash

i=2000
while (( i < 3000 ))
do
	echo "i = $i"
        echo "select * from t1 where a = $i;" | ../../src/cgclt --server=localhost --user=lemke/lemke --tableset=TS1 --protocol=fastserial
	(( i++ ))
done 
