Re: [sqlite] [EXTERNAL] Re: sqlite.org website is now HTTPS-only

2018-06-07 Thread Hick Gunter
> > >Why can't we have both? I mean the software is in the public domain there is >nothing to hide so what's the point of encrypting the site? > >Cheers and thank for you generosity and work. >Best regards, >George I believe it is because of the EU GDPR, which is designed to placea

Re: [sqlite] Feature suggestion / requesst

2018-06-07 Thread Scott Robison
On Thu, Jun 7, 2018, 9:25 PM Rowan Worth wrote: > On 3 June 2018 at 07:28, Scott Robison wrote: > > > I've encountered a feature that I think would be awesome: > > https://www.postgresql.org/docs/9.3/static/dml-returning.html > > > > Example: INSERT INTO blah (this, that, another) VALUES (x, y,

Re: [sqlite] Selecting multiple similar columnname.

2018-06-07 Thread Simon Slavin
On 7 Jun 2018, at 5:11pm, mukeshkb4u wrote: > I have a table with multiple similar column names, like > abc_1,abc_2,abc_3... > > Is there a way i can do a select on only these columns in a table, without > specifiying the full column list? > Can i use a regular expression in selecting

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread Warren Young
On Jun 7, 2018, at 8:24 PM, George wrote: > > On Thu, 7 Jun 2018 14:31:22 -0400 > Richard Hipp wrote: > >> As an experiment, I have reconfigured the sqlite.org website to >> redirect all HTTP requests over to HTTPS. >> >> Let me know if this causes anybody any unnecessary grief. It is easy

Re: [sqlite] Reset the cursor

2018-06-07 Thread Igor Korot
Keith, Thank you. After upgrading everything works as expected. It was just an old library version. And I won't even bother trying to track down the fixing commit. ;-) And thanks to Olivier for a suggestion about the "SELECT.. " statement instead of mprintf(). The issue is closed. On Thu, Jun

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread jungle Boogie
On 7:24PM, Thu, Jun 7, 2018 George wrote: > > On Thu, 7 Jun 2018 14:31:22 -0400 > Richard Hipp wrote: > > > As an experiment, I have reconfigured the sqlite.org website to > > redirect all HTTP requests over to HTTPS. > > > > Let me know if this causes anybody any unnecessary grief. It is easy

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread J.B. Nicholson
George wrote: Why can't we have both? I mean the software is in the public domain there is nothing to hide so what's the point of encrypting the site? ISPs and other intermediaries alter website traffic between the server and the client. The purpose of their alterations is irrelevant, you

[sqlite] Checking for errors in sqlite3_column_*

2018-06-07 Thread Christopher Head
Hello, I have a question regarding checking for errors that occur when calling sqlite3_column_*. From this manual page: https://sqlite.org/c3ref/column_blob.html it seems that the only error that could occur (other than programmer error, like out-of-bounds column index or calling it after

Re: [sqlite] Filename encoding on Unix platforms

2018-06-07 Thread Christopher Head
Thanks to all who replied. Richard, you specifically said that “on posix, filenames are expected to be UTF8”; sorry, I’m not very familiar with the POSIX standard, but I wasn’t aware that was the case? This page: http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_271

[sqlite] Selecting multiple similar columnname.

2018-06-07 Thread mukeshkb4u
Hi All, I have a table with multiple similar column names, like abc_1,abc_2,abc_3... Is there a way i can do a select on only these columns in a table, without specifiying the full column list? Can i use a regular expression in selecting column names ? Regards Mukesh -- Sent from:

Re: [sqlite] Trigger behaviour on UPDATE after release 3.24.0

2018-06-07 Thread Rowan Worth
On 6 June 2018 at 07:14, Richard Hipp wrote: > On 6/5/18, Stéphane Aulery wrote: > > Hello, > > > > The changelog of the last release [1] say at the point 13 : > > > > UPDATE avoids writing database pages that do not actually change. For > > example, "UPDATE t1 SET x=25 WHERE y=?" becomes a

Re: [sqlite] Feature suggestion / requesst

2018-06-07 Thread David Burgess
Agreed. Would be good. On Fri, Jun 8, 2018 at 1:25 PM, Rowan Worth wrote: > On 3 June 2018 at 07:28, Scott Robison wrote: > > > I've encountered a feature that I think would be awesome: > > https://www.postgresql.org/docs/9.3/static/dml-returning.html > > > > Example: INSERT INTO blah (this,

Re: [sqlite] Feature suggestion / requesst

2018-06-07 Thread Rowan Worth
On 3 June 2018 at 07:28, Scott Robison wrote: > I've encountered a feature that I think would be awesome: > https://www.postgresql.org/docs/9.3/static/dml-returning.html > > Example: INSERT INTO blah (this, that, another) VALUES (x, y, z) RETURNING > id; > > my thoughts are just that this

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread Dennis Clarke
On 6/7/18 10:29 PM, Simon Slavin wrote: On 8 Jun 2018, at 2:59am, Richard Hipp wrote: The web server is one that I wrote myself Yeah. And it doesn't return a "Server:" header. How do you NOT love that? :-) dc ___ sqlite-users mailing list

Re: [sqlite] Reset the cursor

2018-06-07 Thread Keith Medcalf
Yes, 3.24.0 is officially released and the official release page on the sqlite.org website has been updated. I don't think I saw a release announcement either though. --- The fact that there's a Highway to Hell but only a Stairway to Heaven says a lot about anticipated traffic volume.

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread Simon Slavin
On 8 Jun 2018, at 2:59am, Richard Hipp wrote: > The web server is one that I wrote myself Yeah. And it doesn't return a "Server:" header. Simon. ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread George
On Thu, 7 Jun 2018 14:31:22 -0400 Richard Hipp wrote: > As an experiment, I have reconfigured the sqlite.org website to > redirect all HTTP requests over to HTTPS. > > Let me know if this causes anybody any unnecessary grief. It is easy > enough to undo the setting. > Why can't we have both?

Re: [sqlite] Reset the cursor

2018-06-07 Thread Igor Korot
Hi, Keith, On Tue, Jun 5, 2018 at 5:09 PM, Keith Medcalf wrote: > > Most of them. In particular those that return (as in SELECT) data work > either way. Those that set things can only be used as a pragma. > > Note that the table name is passed differently (in the case of pragma's > expecting

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread Dennis Clarke
On 6/7/18 9:59 PM, Richard Hipp wrote: On 6/7/18, Scott Doctor wrote: Just out of curiosity, is the sqlite website using nginx or apache as the server? None of the above. The web server is one that I wrote myself You're level of cool just jumped to UNIX silverback level :-) Dennis

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread Richard Hipp
On 6/7/18, Scott Doctor wrote: > Just out of curiosity, is the sqlite website using nginx or > apache as the server? None of the above. The web server is one that I wrote myself, long again, before SQLite, called althttpd.c. You can find the source code here:

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread Dennis Clarke
On 6/7/18 5:34 PM, Bob Friesenhahn wrote: On Thu, 7 Jun 2018, Warren Young wrote: Yes, I know that, but it does solve the other likely problem when using a too-old system with HTTPS, being an inability for the client and server to agree on a mutually-supported encryption suite.  With all of

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread Warren Young
On Jun 7, 2018, at 2:32 PM, Stephen Chrzanowski wrote: > > On Thu, Jun 7, 2018 at 4:07 PM, Warren Young wrote: > >> Do you really need something in the daily scrape that you wouldn’t get >> from a Fossil clone? > > To that, I can honestly say, I don't know. The thing I like about the > daily

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread Scott Doctor
Just out of curiosity, is the sqlite website using nginx or apache as the server? - Scott Doctor sc...@scottdoctor.com - ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread Bob Friesenhahn
On Thu, 7 Jun 2018, Warren Young wrote: Yes, I know that, but it does solve the other likely problem when using a too-old system with HTTPS, being an inability for the client and server to agree on a mutually-supported encryption suite. With all of the security vulnerabilities found in

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread jungle Boogie
On 1:38PM, Thu, Jun 7, 2018 Keith Medcalf wrote: > > > Just tell wget --no-check-certificate in the command line. wget does not use a certificate repository and you need to obtain and specify the expected root manually. It will be no less secure than it was before (when using HTTP) except that

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread Warren Young
On Jun 7, 2018, at 3:08 PM, Bob Friesenhahn wrote: > > On Thu, 7 Jun 2018, Warren Young wrote: >> >> I ask because if you build a Fossil binary by hand, you can link it to an >> up-to-date version of OpenSSL, which may solve the certificate problem. > > OpenSSL does not provide certificates.

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread Chris Brody
http://sqlite.org and https://sqlite.org seem to redirect OK to https://sqlite.org/index.html http://www.sqlite.org and https://www.sqlite.org seem to redirect OK to https://www.sqlite.org/index.html fossil clone https://www.sqlite.org/src sqlite.fossil works for me on my mac (recent version

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread Bob Friesenhahn
On Thu, 7 Jun 2018, Warren Young wrote: I ask because if you build a Fossil binary by hand, you can link it to an up-to-date version of OpenSSL, which may solve the certificate problem. OpenSSL does not provide certificates. The missing certificate could be copied from a newer Let's

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread J. King
On June 7, 2018 3:52:04 PM EDT, Stephen Chrzanowski wrote: >Probably, yes. Its running Debian Lenny. I'm trying to locate a >resource >right now to see if I can get the appropriate files, and how to keep >them >updated. > >On Thu, Jun 7, 2018 at 3:43 PM, Simon Slavin >wrote: > >> On 7 Jun

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread Keith Medcalf
Just tell wget --no-check-certificate in the command line. wget does not use a certificate repository and you need to obtain and specify the expected root manually. It will be no less secure than it was before (when using HTTP) except that now it will use Transport encryption. Certificate

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread Stephen Chrzanowski
On Thu, Jun 7, 2018 at 4:07 PM, Warren Young wrote: > > That OS is over 9 years old now. > Trust me, its showing its age, and I'd really like to get rid of it, but there's a bunch of things I really don't want to migrate as some of what is doing relies on functionality in the underlying

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread Warren Young
On Jun 7, 2018, at 1:52 PM, Stephen Chrzanowski wrote: > > Its running Debian Lenny. That OS is over 9 years old now. I’ve been known to run Linux boxes longer than that, but one of the several tradeoffs for that stability is that you must accept incompatibilities like this. Besides the CA

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread Stephen Chrzanowski
Probably, yes. Its running Debian Lenny. I'm trying to locate a resource right now to see if I can get the appropriate files, and how to keep them updated. On Thu, Jun 7, 2018 at 3:43 PM, Simon Slavin wrote: > On 7 Jun 2018, at 8:35pm, Stephen Chrzanowski wrote: > > > stephen@vmLamp:~$ wget

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread Bob Friesenhahn
On Thu, 7 Jun 2018, Simon Slavin wrote: Your copy of wget is using a different set of Certification Authority certificates to those used by your browser. Since your browser was updated more recently than your OS (purely a guess on my part) I'm guessing that the certificates used by "wget"

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread Simon Slavin
On 7 Jun 2018, at 8:35pm, Stephen Chrzanowski wrote: > stephen@vmLamp:~$ wget -O - https://sqlite.org/download.html > --15:30:59-- https://sqlite.org/download.html > => `-' > Resolving sqlite.org... 45.33.6.223 > Connecting to sqlite.org|45.33.6.223|:443... connected. > ERROR:

Re: [sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread Stephen Chrzanowski
I've got a script that runs daily and scrapes the download page and grabs everything new. The last run was this morning at midnight eastern (-4UTC) and it successfully grabbed the list of files that could be downloaded, however, when I run it now, it doesn't seem to want to see anything. After

[sqlite] sqlite.org website is now HTTPS-only

2018-06-07 Thread Richard Hipp
As an experiment, I have reconfigured the sqlite.org website to redirect all HTTP requests over to HTTPS. Let me know if this causes anybody any unnecessary grief. It is easy enough to undo the setting. -- D. Richard Hipp d...@sqlite.org ___

Re: [sqlite] How to download SQLite for Mac?

2018-06-07 Thread Lutz Horn
The download page (https://sqlite.org/download.html) provides precompiled binaries for Mac OS X (x86): https://sqlite.org/2018/sqlite-tools-osx-x86-324.zip This zip file contains a single binary you can put onto your path. Lutz ___ sqlite-users

Re: [sqlite] How to download SQLite for Mac?

2018-06-07 Thread Niall O'Reilly
On 6 Jun 2018, at 17:06, Sabrina Abdul Jalil wrote: > I am on MAC OS Sierra VER 10.12.06. How to download SQLite? As a couple of people have already pointed out, you actually have it already. Depending on your needs, it may be significant that the version of SQLite which is bundled with macOS

Re: [sqlite] How to download SQLite for Mac?

2018-06-07 Thread Simon Slavin
On 6 Jun 2018, at 5:06pm, Sabrina Abdul Jalil wrote: > I am on MAC OS Sierra VER 10.12.06. How to download SQLite? The shell tool is already on your computer. In Terminal type which sqlite3 and it will tell you where it is. You should be able to type just sqlite3

Re: [sqlite] How to download SQLite for Mac?

2018-06-07 Thread Tim Streater
On 06 Jun 2018, at 17:06, Sabrina Abdul Jalil wrote: > I am on MAC OS Sierra VER 10.12.06. How to download SQLite? It's already installed on your computer. -- Cheers -- Tim ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org

[sqlite] How to download SQLite for Mac?

2018-06-07 Thread Sabrina Abdul Jalil
Hello, I am on MAC OS Sierra VER 10.12.06. How to download SQLite? Please help. Thanks, Sabrina ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Re: [sqlite] Size of the SQLite library

2018-06-07 Thread Simon Slavin
On 7 Jun 2018, at 5:25am, Dianne Dunn wrote: > Hey there do you know how I can get off this list.?? Click the link that appears at the bottom of every post. Simon. ___ sqlite-users mailing list sqlite-users@mailinglists.sqlite.org