Home
last modified time | relevance | path

Searched refs:renameCollection (Results 1 – 16 of 16) sorted by relevance

/third_party/ejdb/src/bindings/ejdb2_react_native/binding/
Dindex.js566 renameCollection(oldCollectionName, newCollectionName) { method in EJDB2
567 return ejdb2.renameCollection(this._db, oldCollectionName, newCollectionName);
Dindex.d.ts316 renameCollection(oldCollectionName: string, newCollectionName: string): Promise<void>;
/third_party/ejdb/src/bindings/ejdb2_flutter/ios/Classes/
DSwiftEjdb2FlutterPlugin.swift180 execute(mc, renameCollection) in handle()
420 func renameCollection(_ mc: DbMethodCall) throws { in renameCollection() function
423 try mc.db.renameCollection(oldName, newName) in renameCollection()
/third_party/ejdb/src/bindings/ejdb2_node/
Dindex.d.ts408 renameCollection(oldCollectionName: string, newCollectionName: string): Promise<void>;
Dtest.js220 await db.renameCollection('cc1', 'cc2');
Dindex.js603 renameCollection(oldCollectionName, newCollectionName) { method in EJDB2
/third_party/ejdb/src/bindings/ejdb2_react_native/binding/android/src/main/java/com/softmotions/ejdb2/
DEJDB2DBModule.java152 …public void renameCollection(Integer handle, String oldCollectionName, String newCollectionName, P… in renameCollection() method in EJDB2DBModule
154 db.renameCollection(oldCollectionName, newCollectionName); in renameCollection()
/third_party/ejdb/src/bindings/ejdb2_flutter/android/src/main/java/com/softmotions/ejdb2/
DEjdb2FlutterPlugin.java56 methods.put("renameCollection", thread(Ejdb2FlutterPlugin::renameCollection));
335 private static void renameCollection(DbMethodCall mc) { in renameCollection() method in Ejdb2FlutterPlugin
338 mc.getDb().renameCollection(oldName, newName); in renameCollection()
/third_party/ejdb/src/bindings/ejdb2_jni/src/android/java/com/softmotions/ejdb2/
DEJDB2.java137 …public void renameCollection(String oldCollectionName, String newCollectionName) throws EJDB2Excep… in renameCollection() method in EJDB2
/third_party/ejdb/src/bindings/ejdb2_jni/src/test/java/com/softmotions/ejdb2/
DTestEJDB2.java158 db.renameCollection("cc1", "cc2"); in dbTest()
/third_party/ejdb/src/bindings/ejdb2_jni/src/main/java/com/softmotions/ejdb2/
DEJDB2.java163 …public void renameCollection(String oldCollectionName, String newCollectionName) throws EJDB2Excep… in renameCollection() method in EJDB2
/third_party/ejdb/src/bindings/ejdb2_react_native/tests/
DApp.js241 await db.renameCollection('cc1', 'cc2');
/third_party/ejdb/src/bindings/ejdb2_dart/test/
Dejdb2_dart_test.dart169 await db.renameCollection('cc1', 'cc2');
/third_party/ejdb/src/bindings/ejdb2_flutter/example/lib/
Dmain.dart148 await db.renameCollection('cc1', 'cc2');
/third_party/ejdb/src/bindings/ejdb2_flutter/lib/
Dejdb2_flutter.dart431 Future<void> renameCollection(String oldName, String newName) {
433 .invokeMethod('renameCollection', [_handle, oldName, newName]).catchError(_errorHandler());
/third_party/ejdb/src/bindings/ejdb2_dart/lib/
Dejdb2_dart.dart489 Future<void> renameCollection(String oldCollection, String newCollectionName) {