summaryrefslogtreecommitdiffstats
path: root/sqlite-jdbc/src/main/native/sqlite_jni_defs.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove sqlite-jdbc sources that moved to external/javasqliteBrian Carlstrom2011-03-171-39/+0
| | | | Change-Id: I1782aa53b05b959100c9fe3a55a718121e3b0f58
* Upgrade our sqlite JDBC driver to version 20100131.Elliott Hughes2010-02-261-1/+1
| | | | | | | | | | | | | | | | | | | | This fixes a bunch of KnownFailures, and adds a bunch of new features. I've updated the tests correspondingly (though doubtless we could add a lot more tests now, if we wanted to). I regenerated Constants.java manually, and explained how in its javadoc. I've added the upstream VERSION file so it's easier to see what upstream version we're at. (Constants now contains the version number too, but that's less obvious.) All our changes now have android-changed markers. I'll see about getting them pushed upstream next week. (This change best reviewed with "ignore whitespace". It looks like we made a bunch of whitespace "corrections" when we imported this source, which just makes it harder to stay in sync. I've taken the upstream copies of files that only had whitespace differences.)
* Break the sqlite JDBC driver out from our JDBC implementation.Elliott Hughes2010-02-261-0/+39
The JDBC driver is from a different source (http://www.ch-werner.de/javasqlite/overview-summary.html) and is only really needed for testing. Bug 2468870 asks that we don't eagerly register the native methods for these classes. That bug is fixed by this change. Bug 2198667 asks that we stop shipping this JDBC driver as part of the base system. That bug is not addressed by this change: the classes and native code are now in their own, separate, .jar and .so files -- so they'll be easier to remove in future -- but for now those files are still in /system/framework and /system/lib respectively. Bug: 2468870 Bug: 2198667