Re: [sqlite] [System.Data.SQLite] Nuget 3 support

2016-06-18 Thread Joe Mistachkin
Jann Roder wrote: > > Nuget 3 now seems to have much better support for native libraries. > I'd really like to use this for System.Data.SQLite. I suspect this will require a great deal of investigation, refactoring, and debugging. It's too late in the release cycle for 1.0.102.0 for this.

Re: [sqlite] sqlite3_column_origin_name for INSERT and UPDATE

2016-06-18 Thread Jean-Christophe Deschamps
My first instinct is to add a Units column to any table with a measurement. The value in Units would be a foreign key to a Units table. Another table, Conversions, could hold conversion factors. In addition to what jkl said, I'd like to point out that if you may someday find yourself

Re: [sqlite] about Precompiled Binaries for Android

2016-06-18 Thread Dan Kennedy
On 06/18/2016 07:06 AM, 风 wrote: hi, sqlite.org provided the Precompiled Binaries for Android(*.aar), where to download the source code ? (.java, jni) http://www.sqlite.org/android/doc/trunk/www/index.wiki ___ sqlite-users mailing list

Re: [sqlite] sqlite3_column_origin_name for INSERT and UPDATE

2016-06-18 Thread Simon Slavin
Don't depend on column names. The ability to get a column name is not a fundamental part of the SQL specification. There is no standard for the text of column names, or for disambiguating names which occur in two different tables. If you need to specify the units of a measurement, store them

Re: [sqlite] sqlite3_column_origin_name for INSERT and UPDATE

2016-06-18 Thread James K. Lowden
On Fri, 17 Jun 2016 19:59:56 +0200 Rapin Patrick wrote: > 2016-06-17 18:24 GMT+02:00 James K. Lowden : > > > You are encoding type information in the name. If you move the type > > information into the data, SQLite can manage the unit

Re: [sqlite] about Precompiled Binaries for Android

2016-06-18 Thread Simon Slavin
On 18 Jun 2016, at 1:06am, 风 wrote: > sqlite.org provided the Precompiled Binaries for Android(*.aar), > where to download the source code ? (.java, jni) These binaries are compiled from the same C source code that the other libraries come from. There is no Java version of

[sqlite] about Precompiled Binaries for Android

2016-06-18 Thread ??
hi, sqlite.org provided the Precompiled Binaries for Android(*.aar), where to download the source code ? (.java, jni) thanks! Lifeng Zhu ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org

[sqlite] about Precompiled Binaries for Android

2016-06-18 Thread ??
hi, sqlite.org provided the Precompiled Binaries for Android(*.aar), where to download the source code ? (.java, jni) thanks! Lifeng Zhu ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org

[sqlite] [System.Data.SQLite] Nuget 3 support

2016-06-18 Thread Jann Roder
Hi, I recently migrated two of our solutions to nuget 3. Nuget 3 now seems to have much better support for native libraries. Unfortunately it is incompatible with the way the SQLite package currently does things. I had to manually call the traget that copies the interop libraries in my .csproj