Hsqldb is great! but i found some bugs ,following is sample code:

Connection conn = ....//get a conntion 
Statement stmt = conn.createStatement();
stmt.execute("Drop table test if exists");
stmt.execute("CREATE TABLE test (id char(6))");

DatabaseMetaData dbm =conn.getMetaData();
            
ResultSet rs = dbm.getTables(null, null, null, new String[]
                                         {"TABLE"});
while (rs.next())
{
          String tablename = rs.getString(3); 
                  // here,tablename is "TEST"(uppercase) ,not "test", anyone  fixed 
this bug? thank you !
}




-------------------------------------------------------
This SF.Net email is sponsored by: SourceForge.net Broadband
Sign-up now for SourceForge Broadband and get the fastest
6.0/768 connection for only $19.95/mo for the first 3 months!
http://ads.osdn.com/?ad_id=2562&alloc_id=6184&op=click
_______________________________________________
hsqldb-developers mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/hsqldb-developers

Reply via email to