From the first 1 minute and 15 seconds of the video: > "With WebSQL being deprecated, and IndexedDB not providing structured queries, web developers need a tool to satisfy their structured query needs." > "Web app developers need structured queries to work in the mobile world." > "With IndexedDB ... there's a steeeep learning curve to make it useful for your app. Moreover, IndexedDB does not provide structured querie…
Lovefield – A relational database for web apps
51–60 of 60 posts
Re: Lovefield – A relational database for web apps
#52Earlier quoted context omitted.
Disclosure: I'm the author of a competing JavaScript database ( http://gunDB.io/ ). Unfortunately concurrency is typically the last thing that people think about. Concurrency is the first thing we deal with in our database, because you are right, without it data gets corrupted.
So would it be possible to communicate between the two tabs, via the database? In an event-driven way?
Re: Lovefield – A relational database for web apps
#53What happens when the user opens two tabs, both of which try to access the same local database?
Re: Lovefield – A relational database for web apps
#54What is a browser database and what is it good for? Would you use one instead of a back-end DB or in conjunction with one? How? Why? Why is this on 1st page - what is cool about it? I'm clearly missing something, but I can't be bothered to watch the videos - can someone TL;DR it for me, please.
Re: Lovefield – A relational database for web apps
#55Re: Lovefield – A relational database for web apps
#561: http://www.jooq.org/doc/3.6/manual/sql-building/sql-statemen...
Re: Lovefield – A relational database for web apps
#57Re: Lovefield – A relational database for web apps
#58Earlier quoted context omitted.
Disclosure: I'm the author of a competing JavaScript database ( http://gunDB.io/ ). Unfortunately concurrency is typically the last thing that people think about. Concurrency is the first thing we deal with in our database, because you are right, without it data gets corrupted.
So would it be possible to communicate between the two tabs, via the database? In an event-driven way?
It uses local storage
Re: Lovefield – A relational database for web apps
#59I'm not a web developer, but this looks great, I want to learn how SQL things work, maybe this is a good start for beginner ? BTW, speaker's face is too serious.
I would think you'd want to use a more mature/complete SQL database, with broader documentation and a larger community, to learn about SQL. MySQL or PostgreSQL, would be the obvious free choices. Unless you specifically want to learn about client-side browser-based SQL databases (which is a pretty specific niche of SQL database), in which case this would be interesting, but possibly not extremely relevant to developm…
Re: Lovefield – A relational database for web apps
#60Earlier quoted context omitted.
Also Electron apps. It's currently pretty painful getting sqlite working with Electron, this could be a nice alternative.
Have you tried the emscripten port of SQLite? It's worked well for me... http://github.com/kripken/sql.js