-
Export DB to a JSON object that can be serialized elsewhere. This should be easy but currently one can only do it during database upgrade.
Import from a JSON object is tricky even for an empty databa…
-
The Quick Start code isn't working in Mac Safari since the following commit
https://github.com/google/lovefield/commit/b054565617bcb5c78608d5d496f5cc415d9f4784
how to confirm
```
git checkout b05456…
-
ghost updated
9 years ago
-
My safari version is `8.0.8 (10600.8.9)`, my chrome version is `45.0.2454.85 (64-bit)`
I found the behavior of `new Set([])` in safari is not as same as chrome:
``` javascript
// in chrome
new Set([…
-
Today we force the user to create schema object every time (either through SPAC or the schema builder). This part of code can be big in size especially when the user has many tables. Lovefield should …
-
order_by needs to be optimized
3-table join needs to be optimized
-
I cannot find any document that explain how to get an existing db, all examples like below
``` javascript
// SQL equivalent: CREATE DATABASE todo
var schemaBuilder = lf.schema.create('todo', 1);
```…
-
the npm package.json is not commonjs compliant because there is no main defined;
http://wiki.commonjs.org/wiki/Packages/1.1
jspm gives errors about the missing main when trying to install
-
To see this you can use the example and just change line 55 of index_firebase.html to
return this.fillData_();//(results[0]['COUNT(*)'] == 0) ? this.fillData_() : Promise.resolve();
Then load the pa…
-
`lovefield-spac` generates a file like below:
``` js
goog.provide('mydatabase.row.Configs');
goog.provide('mydatabase.ConfigsDbType');
goog.provide('mydatabase.ConfigsType');
(snip)
```
But `dist/lo…