Show
Ignore:
Timestamp:
09/16/09 11:32:01 (3 years ago)
Author:
leo
Message:
 
Location:
XerialJ/trunk/sqlite-jdbc
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • XerialJ/trunk/sqlite-jdbc/sqlitejdbc/Makefile.nested

    r3232 r3590  
    5555        # remove utimes 
    5656        perl -npe '$$_ =~ s/utimes.*//g;' -i build/$(sqlite)-nestedvm/sqlite3.c  
    57  
     57        # insert a code for loading extension functions 
     58        perl -pi -e "s/^opendb_out:/  if(!db->mallocFailed && rc==SQLITE_OK){ rc = RegisterExtensionFunctions(db); }\nopendb_out:/;" \ 
     59            build/$(sqlite)-nestedvm/sqlite3.c 
    5860        (. ./$(nestedvm)/env.sh; cd build/$(sqlite)-nestedvm; \ 
    5961        $$CC -c $$CFLAGS -I. -o sqlite3.o \ 
  • XerialJ/trunk/sqlite-jdbc/src/test/java/org/sqlite/ExtensionTest.java

    r3589 r3590  
    4141    @Test 
    4242    public void extFTS3() throws Exception { 
    43         if (!SQLiteJDBCLoader.isNativeMode()) 
    44             return; 
    4543 
    4644        stat.execute("create virtual table recipe using fts3(name, ingredients)"); 
     
    5957    @Test 
    6058    public void extFunctions() throws Exception { 
    61         if (!SQLiteJDBCLoader.isNativeMode()) 
    62             return; 
    6359 
    6460        {