This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Sqlite 3.23 or better?


When will Cygwin update Sqlite to v3.23 or better (released in 2018/04)?  As of Sqlite 3.23 TRUE/FALSE aliases were added.  (I searched the archive and could not find this question.)  Support in perl, php, etc... also desired.

From a local compile of 3.27.1:

```
$ ./sqlite3
sqlite> select true;
true
1
changes:   0   total_changes: 0
sqlite> select false;
false
0
sqlite> select true is not false;
true is not false
1
changes:   0   total_changes: 0
```

Current Cygwin Sqlite version is 3.21 and does not recognize TRUE/FALSE:

```
$ sqlite3
sqlite> select true;
Error: no such column: true
sqlite> select false;
Error: no such column: false
```

Any pointers appreciated.

-- 
In Need Of True-th :)

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]