Changeset 3182 for XerialJ/trunk/sqlite-jdbc
- Timestamp:
- 04/08/09 19:32:37 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
XerialJ/trunk/sqlite-jdbc/src/test/java/org/sqlite/JDBCTest.java
r3181 r3182 37 37 conn = DriverManager.getConnection("jdbc:sqlite:", prop); 38 38 Statement stat = conn.createStatement(); 39 stat.execute Update("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 41 41 } 42 42 finally


