11 questions
1
vote
1
answer
385
views
The state of Google Lovefield
Google Lovefield is a JS relational database layer on top of IndexedDB: https://github.com/google/lovefield
In their FAQ, it is said to be (or have been) in use by gmail.
It seems to no longer be ...
1
vote
3
answers
778
views
List last messages of chats
CREATE TABLE message
(`id` int, `from_user_id` text, `to_user_id` text, `created` datetime, `message` text)
;
INSERT INTO message
(`id`, `from_user_id`, `to_user_id`, `created`, `message`)
...
-1
votes
1
answer
78
views
Is there any client side Db library that supports partial text search?
I am going thru IndexDB or lovefield but so far could not find way to search partial text like we do in SQL queries via LIKEkeyword. Can someone guide me how could it be achieved?
0
votes
1
answer
54
views
Count items and group by a datetime unit
I'm trying to organize a query which should print a count of items ordered by a time unit such as a hour, a day etc.
My limitation is that I'm using LovefieldDB javascript library and complex queries ...
8
votes
3
answers
2k
views
How to configure Angular-CLI-generated project to include a SharedWorker
What are the specific steps to add a SharedWorker to an @angular/cli >1.2-generated project. I would like the SharedWorker to be defined in TypeScript (with full/correct type-definitions editor ...
0
votes
2
answers
584
views
Javascript database on browser hard-drive
Background:
We're writing an HTML5 offline first application for Chrome Browsers.
We are targeting specifically Chrome Browsers, and we don't want to make an extension to serve the functionality of ...
1
vote
1
answer
137
views
Groupby in Lovefield
hello i tried to use innerjoin in lovefield and tried to use groupBy like this:
var userCompanies = '', company = '';
user = db.getSchema().table('user');
...
1
vote
1
answer
715
views
Exception on connect promise with lovefield
the exception thrown:
lovefield.js:2113 Uncaught NotFoundError: Failed to execute 'transaction' on 'IDBDatabase': One of the specified object stores was not found.
Ello folks, I've been fighting with ...
1
vote
0
answers
86
views
Async flux store operations
I am using the Flux library to provide a dispatcher and stores. However, I am using Google's Lovefield as a means of being an in memory bank.
The problem is that Lovefield's APIs are entirely async, ...
4
votes
2
answers
554
views
Distributing an AngularJS module which uses external Javascript/jQuery libraries
I am developing a reusable component (module) for AngularJS which can be used to enable offline features of applications built with AngularJS.
To achieve client side storage features without re-...
6
votes
0
answers
761
views
How does Lovefield stand out from other in-browser JavaScript databases? [closed]
Lovefield is a new cross-browser, SQL-like RDBMS in JavaScript. What are its advantages over existing client-side JS database libraries, like:
YDN-DB - github.com/yathit/ydn-db
TaffyDB - taffydb.com
...