Re: [sqlite] How to contact Android Sqlite Bindings Maintainers?

2018-09-18 Thread David White
On 09/19/2018 12:18 AM, David White wrote: >> I am stuck trying to use the precompiled binaries + Android bindings on >> Android 8. Does anyone know how to reach the maintainers for this stuff? >Posting here will work. >> I have posted a ticket on the wiki but no luck. >This one, correct? >

Re: [sqlite] How to contact Android Sqlite Bindings Maintainers?

2018-09-18 Thread Dan Kennedy
On 09/19/2018 12:18 AM, David White wrote: I am stuck trying to use the precompiled binaries + Android bindings on Android 8. Does anyone know how to reach the maintainers for this stuff? Posting here will work. I have posted a ticket on the wiki but no luck. This one, correct? https://s

Re: [sqlite] docs: application_id is signed, not unsigned

2018-09-18 Thread William Chargin
Update: drh fixed this in 3580ba4b5bd75ec6. Thanks! Best, WC ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

[sqlite] How to contact Android Sqlite Bindings Maintainers?

2018-09-18 Thread David White
I am stuck trying to use the precompiled binaries + Android bindings on Android 8. Does anyone know how to reach the maintainers for this stuff? I have posted a ticket on the wiki but no luck. Thanks --- This email has been checked for viruses by Avast antivirus software. https://www.avast.com

Re: [sqlite] [EXTERNAL] shell csv import

2018-09-18 Thread D Burgess
Thank you E.Pasma, most elegant. Solves my problem. Thank you Rowan, I was trying to achieve it with /bin/sh (dash) On Tue, Sep 18, 2018 at 7:12 PM, E.Pasma wrote: > > > Rowan Worth wrote: > > > > You can also filter out specific messages at the shell level: > > > > sqlite foo.db 2> >(grep -v

Re: [sqlite] [EXTERNAL] shell csv import

2018-09-18 Thread E.Pasma
> Rowan Worth wrote: > > You can also filter out specific messages at the shell level: > > sqlite foo.db 2> >(grep -v 'expected 7 columns but found 6 - filling the > rest with NULL' >&2) > > But note that the >() syntax is not a POSIX sh feature, and will not work > in a script using a shebang

Re: [sqlite] [EXTERNAL] shell csv import

2018-09-18 Thread E.Pasma
> I have a script that loads csv into an existing table. > > I get this message on stderr for each row imported: > > "... expected 7 columns but found 6 - filling the rest with NULL" > > > We have the means to send stdout to /dev/null using the .once or .output > > Is there a way to send suppr

Re: [sqlite] [EXTERNAL] shell csv import

2018-09-18 Thread Rowan Worth
You can also filter out specific messages at the shell level: sqlite foo.db 2> >(grep -v 'expected 7 columns but found 6 - filling the rest with NULL' >&2) But note that the >() syntax is not a POSIX sh feature, and will not work in a script using a shebang of #!/bin/sh. You need to change it to