Re: [sqlite] Proposal: SQLite on DNA

2019-07-25 Thread Donald Griggs
Yes, but it will grow on you. On Thu, Jul 25, 2019 at 4:40 PM Keith Medcalf wrote: > > Considering the write speed is measured in kb/week I don't think it will > be used for online storage anytime in the lifetime of anyone within the > spin of these electrons ... > > -- > The fact that there's

Re: [sqlite] Proposal: SQLite on DNA

2019-07-25 Thread Wout Mertens
Surely brings new meaning to SQL injection attacks... Wout. On Thu., Jul. 25, 2019, 9:48 p.m. Stephen Chrzanowski wrote: > Do we really want to start going down this path? Like... we already have > parents who won't allow their kids to get flu shots. Will we need to give > our PCs the same

Re: [sqlite] Proposal: SQLite on DNA

2019-07-25 Thread Keith Medcalf
Considering the write speed is measured in kb/week I don't think it will be used for online storage anytime in the lifetime of anyone within the spin of these electrons ... -- The fact that there's a Highway to Hell but only a Stairway to Heaven says a lot about anticipated traffic volume.

Re: [sqlite] Proposal: SQLite on DNA

2019-07-25 Thread Stephen Chrzanowski
Do we really want to start going down this path? Like... we already have parents who won't allow their kids to get flu shots. Will we need to give our PCs the same kind of shots?! On Thu, Jul 25, 2019 at 11:31 AM Chris Brody wrote: > > > May I humbly suggest that the development team look

Re: [sqlite] Ionic SQLite get error: "Cannot read property 'executeSql' of undefined"

2019-07-25 Thread Stephen Chrzanowski
I don't know a single thing about Ionic other than how to spell it, but what I do know is that there are two types of SQL calls that do different things, and depending on the wrapper or interface, you might be looking at a different command or implementation. With SQL, one style of execution is

Re: [sqlite] System.Data.SQLite.dll.config in final build

2019-07-25 Thread Eric Kundl
Joe Mistachkin wrote: > > Using VS and SQLite (from NuGet pkg). > What version of Visual Studio and NuGet are you using? > > After the 'build' of the solution/project, the file > System.Data.SQLite.dll.config is included in the bin\release folder. > I have not seen this

Re: [sqlite] Proposal: SQLite on DNA

2019-07-25 Thread Chris Brody
> > May I humbly suggest that the development team look into porting to a new > > platform: > > > +1 (+100) > As in Viral File System? Yes (haha) ___

Re: [sqlite] Proposal: SQLite on DNA

2019-07-25 Thread Graham Holden
Thursday, July 25, 2019, 3:56:53 PM, Simon Slavin wrote: > May I humbly suggest that the development team look into porting to a new > platform: > > " Simply put, at this pace, there soon won’t

Re: [sqlite] Ionic SQLite get error: "Cannot read property 'executeSql' of undefined"

2019-07-25 Thread Wout Mertens
Attachments get removed, but this error means that the object you're calling executeSql on is not defined. Maybe you're not loading some file? Wout. On Thu., Jul. 25, 2019, 3:05 p.m. Sebastien Capdeville < capdeville.sebast...@gmail.com> wrote: > Hello, > I have an error with 'executeSql' on a

[sqlite] Proposal: SQLite on DNA

2019-07-25 Thread Simon Slavin
May I humbly suggest that the development team look into porting to a new platform: " Simply put, at this pace, there soon won’t be enough data storage and compute material to go by. Which is why

[sqlite] Ionic SQLite get error: "Cannot read property 'executeSql' of undefined"

2019-07-25 Thread Sebastien Capdeville
Hello, I have an error with 'executeSql' on a SQLite database within a ionic 4 application and I can't find any solution about it, I must do something wrong and I would like to be helped about it. *Context:* My application is a CRM application (*Customer Relationship Management*). *Database:*

Re: [sqlite] [EXTERNAL] Virtual Tables xConnect Called When?

2019-07-25 Thread Richard Hipp
xConnect is called whenever SQLite rereads and reparses the database schema, such as when opening a connection to an existing database. On 7/25/19, Justin Olbrantz wrote: > The reason I asked the question is because for my virtual table which has a > "backing store" (more precisely it needs to

Re: [sqlite] [EXTERNAL] Virtual Tables xConnect Called When?

2019-07-25 Thread Justin Olbrantz
The reason I asked the question is because for my virtual table which has a "backing store" (more precisely it needs to have CREATE VIRTUAL TABLE called to associate a loaded file with the table to be created via a table parameter), I have separate implementations for xCreate and xConnect. xCreate

Re: [sqlite] [EXTERNAL] Virtual Tables xConnect Called When?

2019-07-25 Thread Hick Gunter
This assumes that there is some kind of backing store that needs to be created once (xCreate) but may be conncted to (xConnect) later. CREATE VIRTUAL TABLE calls the xCreate function (and DROP TABLE will call xDestroy), whereas queries will call the xConnect function. IIRC connecting to an