/third_party/ejdb/src/bindings/ejdb2_jni/src/android/java/com/softmotions/ejdb2/ |
D | EJDB2.java | 31 public final class EJDB2 { class 51 EJDB2(EJDB2Builder options) throws EJDB2Exception { in EJDB2() method in EJDB2 271 public EJDB2 removeCollection(String collection) throws EJDB2Exception { in removeCollection() 300 …public EJDB2 ensureStringIndex(String collection, String path, boolean unique) throws EJDB2Excepti… in ensureStringIndex() 314 …public EJDB2 removeStringIndex(String collection, String path, boolean unique) throws EJDB2Excepti… in removeStringIndex() 328 …public EJDB2 ensureIntIndex(String collection, String path, boolean unique) throws EJDB2Exception { in ensureIntIndex() 342 …public EJDB2 removeIntIndex(String collection, String path, boolean unique) throws EJDB2Exception { in removeIntIndex() 357 …public EJDB2 ensureFloatIndex(String collection, String path, boolean unique) throws EJDB2Exceptio… in ensureFloatIndex() 362 …public EJDB2 removeFloatIndex(String collection, String path, boolean unique) throws EJDB2Exceptio… in removeFloatIndex()
|
D | JQL.java | 64 private final EJDB2 db; 81 public EJDB2 getDb() { in getDb() 395 JQL(EJDB2 db, String query, String collection) throws EJDB2Exception { in JQL() 432 private native void _init(EJDB2 db, String query, String collection); in _init() 434 private native void _execute(EJDB2 db, JQLCallback cb, OutputStream explainLog); in _execute() 436 private native long _execute_scalar_long(EJDB2 db, OutputStream explainLog); in _execute_scalar_long()
|
D | EJDB2Builder.java | 142 public EJDB2 open() { in open() 143 return new EJDB2(this); in open()
|
/third_party/ejdb/src/bindings/ejdb2_jni/src/main/java/com/softmotions/ejdb2/ |
D | EJDB2.java | 27 public final class EJDB2 implements AutoCloseable { class 47 EJDB2(EJDB2Builder options) throws EJDB2Exception { in EJDB2() method in EJDB2 379 public EJDB2 removeCollection(String collection) throws EJDB2Exception { in removeCollection() 408 …public EJDB2 ensureStringIndex(String collection, String path, boolean unique) throws EJDB2Excepti… in ensureStringIndex() 422 …public EJDB2 removeStringIndex(String collection, String path, boolean unique) throws EJDB2Excepti… in removeStringIndex() 436 …public EJDB2 ensureIntIndex(String collection, String path, boolean unique) throws EJDB2Exception { in ensureIntIndex() 450 …public EJDB2 removeIntIndex(String collection, String path, boolean unique) throws EJDB2Exception { in removeIntIndex() 465 …public EJDB2 ensureFloatIndex(String collection, String path, boolean unique) throws EJDB2Exceptio… in ensureFloatIndex() 470 …public EJDB2 removeFloatIndex(String collection, String path, boolean unique) throws EJDB2Exceptio… in removeFloatIndex()
|
D | JQL.java | 62 private final EJDB2 db; 79 public EJDB2 getDb() { in getDb() 401 JQL(EJDB2 db, String query, String collection) throws EJDB2Exception { in JQL() 438 private native void _init(EJDB2 db, String query, String collection); in _init() 440 private native void _execute(EJDB2 db, JQLCallback cb, OutputStream explainLog); in _execute() 442 private native long _execute_scalar_long(EJDB2 db, OutputStream explainLog); in _execute_scalar_long()
|
D | EJDB2Builder.java | 143 public EJDB2 open() { in open() 144 return new EJDB2(this); in open()
|
/third_party/ejdb/src/bindings/ejdb2_node/example/ |
D | README.md | 1 # EJDB2 Typescript example project 4 import { EJDB2 } from 'ejdb2_node'; 7 const db = await EJDB2.open('example.db', { truncate: true });
|
D | index.ts | 1 import { EJDB2 } from 'ejdb2_node'; 4 const db = await EJDB2.open('example.db', { truncate: true });
|
/third_party/ejdb/ |
D | BASE.md | 7 EJDB2 is an embeddable JSON database engine published under MIT license. 49 [![EJDB2 Presentation](https://iowow.softmotions.com/articles/ejdb-presentation-cover.png)](https:/… 51 ## EJDB2 platforms matrix 79 ### Unofficial EJDB2 language bindings 110 EJDB2 code ported and tested on `High Sierra` / `Mojave` / `Catalina` 112 [EJDB2 Swift binding](https://github.com/Softmotions/EJDB2Swift) for MacOS, iOS and Linux. 149 EJDB2 can be cross-compiled for windows
|
/third_party/ejdb/src/bindings/ejdb2_node/ |
D | README.md | 1 # EJDB2 Node.js native binding 12 import { EJDB2 } from "ejdb2_node"; 15 const db = await EJDB2.open("example.db", { truncate: true });
|
D | index.d.ts | 96 readonly db: EJDB2; 347 export class EJDB2 { property in ejdb2_node.JBE 353 static open(path: String, opts?: OpenOptions): Promise<EJDB2>;
|
D | test.js | 29 const { EJDB2, JBE } = require('./index'); 32 const db = await EJDB2.open('hello.db', { truncate: true }); 231 const db2 = await EJDB2.open('hello-bkp.db', { truncate: false });
|
D | index.js | 452 class EJDB2 { class 491 const inst = new EJDB2(toArgs()); 718 EJDB2, property
|
/third_party/ejdb/src/bindings/ejdb2_react_native/ |
D | README.md | 1 # EJDB2 React Native binding 37 import { EJDB2, JBE } from 'ejdb2_react_native'; 40 const db = await EJDB2.open('hello.db');
|
/third_party/ejdb/src/bindings/ejdb2_react_native/binding/ |
D | index.d.ts | 239 export class EJDB2 { 247 static open(name: string, opts?: OpenOptions): EJDB2; 369 readonly db: EJDB2;
|
D | index.js | 422 class EJDB2 { class 431 return ejdb2.open(path, opts).then(db => new EJDB2(db)); 667 EJDB2, property
|
/third_party/ejdb/src/bindings/ejdb2_jni/example/src/main/java/ |
D | EJDB2Example.java | 1 import com.softmotions.ejdb2.EJDB2; 12 try (EJDB2 db = new EJDB2Builder("example.db").truncate().open()) { in main()
|
/third_party/ejdb/src/bindings/ejdb2_flutter/lib/ |
D | ejdb2_flutter.dart | 54 /// EJDB2 Instance builder. 81 /// Open EJDB2 database 84 Future<EJDB2> open() => EJDB2._open(this); 162 /// EJDB2 query builder/executor. 169 final EJDB2 _jb; 334 class EJDB2 { 335 EJDB2._(this._handle); 339 static Future<EJDB2> _open(EJDB2Builder b) async { 342 return EJDB2._(hdl);
|
/third_party/ejdb/src/bindings/ejdb2_jni/ |
D | README.md | 1 # EJDB2 Java JNI binding 13 try (EJDB2 db = new EJDB2Builder("example.db").truncate().open()) { 56 [Sample EJDB2 java project](./example)
|
/third_party/ejdb/src/bindings/ejdb2_jni/src/android/java/com/softmotions/ejdb2/example/ |
D | EJDB2Example.java | 3 import com.softmotions.ejdb2.EJDB2; 17 EJDB2 db = new EJDB2Builder("example.db").truncate().open(); in main()
|
/third_party/ejdb/src/bindings/ejdb2_dart/ |
D | README.md | 1 # EJDB2 Dart VM native binding 15 final db = await EJDB2.open('example.db', truncate: true);
|
/third_party/ejdb/src/bindings/ejdb2_jni/example/ |
D | README.md | 1 ## EJDB2 Java sample app 43 <name>EJDB2 Maven Repositoty on Repsy</name>
|
/third_party/ejdb/src/bindings/ejdb2_jni/src/ |
D | CMakeLists.txt | 33 SOURCES android/java/com/softmotions/ejdb2/EJDB2.java 56 com/softmotions/ejdb2/EJDB2.java 101 CLASSES com.softmotions.ejdb2.EJDB2 com.softmotions.ejdb2.JQL
|
/third_party/ejdb/src/bindings/ejdb2_dart/lib/ |
D | ejdb2_dart.dart | 2 /// EJDB2 Dart VM native API binding. 98 final EJDB2 db; 256 class EJDB2 extends NativeFieldWrapperClass2 { 257 EJDB2._(); 270 /// Open EJDB2 database 273 static Future<EJDB2> open(String path, 290 final completer = Completer<EJDB2>(); 292 final jb = EJDB2._();
|
/third_party/ejdb/src/bindings/ejdb2_react_native/tests/ |
D | App.js | 11 import { EJDB2, JBE } from 'ejdb2_react_native'; 31 const db = await EJDB2.open('hello.db', { truncate: true }); 266 const db2 = await EJDB2.open('hello.db.bkp', { truncate: false });
|