Show
Ignore:
Timestamp:
04/08/09 19:32:37 (3 years ago)
Author:
leo
Message:
 
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • XerialJ/trunk/sqlite-jdbc/src/test/java/org/sqlite/JDBCTest.java

    r3181 r3182  
    3737            conn = DriverManager.getConnection("jdbc:sqlite:", prop); 
    3838            Statement stat = conn.createStatement(); 
    39             stat.executeUpdate("create table test (id integer primary key, fn, sn);"); 
    40             stat.executeUpdate("create view testView as select * from test;"); 
     39            stat.executeQuery("select load_extension('')"); 
     40 
    4141        } 
    4242        finally