Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
385 views

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 ...
obe's user avatar
  • 7,844
1 vote
3 answers
778 views

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`) ...
bsr's user avatar
  • 59k
-1 votes
1 answer
78 views

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?
Volatil3's user avatar
  • 15.1k
0 votes
1 answer
54 views

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 ...
Chriss's user avatar
  • 1
8 votes
3 answers
2k views

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 ...
CalvinDale's user avatar
  • 9,851
0 votes
2 answers
584 views

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 ...
David Mawer's user avatar
1 vote
1 answer
137 views

hello i tried to use innerjoin in lovefield and tried to use groupBy like this: var userCompanies = '', company = ''; user = db.getSchema().table('user'); ...
123bbuingbbuing's user avatar
1 vote
1 answer
715 views

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 ...
Terrance's user avatar
  • 11.9k
1 vote
0 answers
86 views

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, ...
jshthornton's user avatar
  • 1,314
4 votes
2 answers
554 views

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-...
Chaya Sandamali's user avatar
6 votes
0 answers
761 views

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 ...
Andrei's user avatar
  • 61