Re: [sqlite] Documentation is lying to me

2019-02-27 Thread Joshua Thomas Wise
>> >> -Original Message- >> From: sqlite-users [mailto:sqlite-users-boun...@mailinglists.sqlite.org >> <mailto:sqlite-users-boun...@mailinglists.sqlite.org>] On Behalf Of Joshua >> Wise >> Sent: Wednesday, February 27, 2019 2:13 PM >> To: SQLite ma

Re: [sqlite] Documentation is lying to me

2019-02-27 Thread Joshua Wise
; <mailto:sqlite-users-boun...@mailinglists.sqlite.org>] On Behalf Of Joshua > Wise > Sent: Wednesday, February 27, 2019 2:13 PM > To: SQLite mailing list > Subject: Re: [sqlite] Documentation is lying to me > > I can confirm that it also doesn’t work with SQLite version 3.24.0

Re: [sqlite] Documentation is lying to me

2019-02-27 Thread David Raymond
about anticipated traffic volume. >> >>> -----Original Message- >>> From: sqlite-users [mailto:sqlite-users- >>> boun...@mailinglists.sqlite.org <mailto:boun...@mailinglists.sqlite.org>] >>> On Behalf Of Joshua Thomas Wise >>> Sent: T

Re: [sqlite] Documentation is lying to me

2019-02-27 Thread Joshua Wise
ic volume. >> >>> -----Original Message- >>> From: sqlite-users [mailto:sqlite-users- >>> boun...@mailinglists.sqlite.org <mailto:boun...@mailinglists.sqlite.org>] >>> On Behalf Of Joshua Thomas Wise >>> Sent: Tuesday, 26 February, 2

Re: [sqlite] Documentation is lying to me

2019-02-27 Thread Joshua Thomas Wise
pragma_database_list(); > > > --- > The fact that there's a Highway to Hell but only a Stairway to Heaven says a > lot about anticipated traffic volume. > >> -Original Message- >> From: sqlite-users [mailto:sqlite-users- >> boun...@mailinglists.sqlite.org]

Re: [sqlite] Documentation is lying to me

2019-02-26 Thread Adrian Ho
On 27/2/19 10:06 AM, Joshua Thomas Wise wrote: > In this SQLite3 documentation (https://www.sqlite.org/pragma.html#pragfunc), > it says that information_schema could be implemented by doing something like > this: > > ATTACH ':memory:' AS 'information_schema'; > CREATE VIEW

Re: [sqlite] Documentation is lying to me

2019-02-26 Thread Keith Medcalf
gt;Sent: Tuesday, 26 February, 2019 19:06 >To: sqlite-users@mailinglists.sqlite.org >Subject: [sqlite] Documentation is lying to me > >In this SQLite3 documentation >(https://www.sqlite.org/pragma.html#pragfunc), it says that >information_schema could be implemented by doing somethin

[sqlite] Documentation is lying to me

2019-02-26 Thread Joshua Thomas Wise
In this SQLite3 documentation (https://www.sqlite.org/pragma.html#pragfunc), it says that information_schema could be implemented by doing something like this: ATTACH ':memory:' AS 'information_schema'; CREATE VIEW information_schema.schemata(schema_name) AS SELECT name FROM