TextJDBC Wiki
Brought to you by:
lenysoft
...
Properties info=new Properties();
info.put(TextJDBC.SOURCE, TextJDBC.SOURCE_FILE);
info.put(TextJDBC.TYPE, TextJDBC.TYPE_FIXED);
info.put(TextJDBC.COLUMN_NAMES, "name,last_name,amount");
info.put(TextJDBC.COLUMN_TYPES, "String,String,Double");
info.put(TextJDBC.COLUMN_SIZES, "5,10,5");
String sql="select last_name,name,amount from test
where (last_name starts with 'last name')
and ((amount==5) or (amount==12)) order by amount desc";
Class.forName(TextJDBCDriver.class.getCanonicalName());
TextConnection con=(TextConnection)DriverManager.getConnection(url, info);
PreparedStatement p=con.prepareStatement(sql);
...