Jaguar-dart / jaguar_orm

Source-generated ORM with relations (one-to-one, one-to-many, many-to-many), preloading, cascading, polymorphic relations, etc
https://jaguar-dart.github.io
BSD 3-Clause "New" or "Revised" License
217 stars 54 forks source link

jaguar_query_sqljocky-2.2.4/adapter.dart - missing Alter, insertMany, updateMany, upsert, upsertMany #180

Open Adenosperma1 opened 4 years ago

Adenosperma1 commented 4 years ago

jaguar_query_sqljocky-2.2.4/lib/src/adapter.dart

Missing functions:

these can be used a temp fix:

@override Future alter(Alter statement) { throw UnimplementedError('TODO need to be implemented'); }

@override Future insertMany(InsertMany statement) { throw UnimplementedError('TODO need to be implemented'); }

@override Future updateMany(UpdateMany statement) { throw UnimplementedError('TODO need to be implemented'); }

Future upsert(Upsert statement) { throw UnimplementedError('TODO need to be implemented'); }

Future upsertMany(UpsertMany statement) { throw UnimplementedError('TODO need to be implemented'); }