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

missing implementations for these member Adapter.alter #171

Open u007 opened 4 years ago

u007 commented 4 years ago

got this error:

my pubspec:

dependencies:
  # ...
  dotenv: ^2.0.0
  mysql1: ^0.17.0+1
  jaguar_query_sqljocky: ^2.2.4
  jaguar_orm: ^2.2.7

dev_dependencies:
  build_runner: ^1.5.0
  jaguar_orm_gen: ^2.2.29
jaguar_query_sqljocky-2.2.4/lib/src/adapter.dart:12:7: Error: The non-abstract class 'MysqlAdapter' is missing implementations for these members:
 - Adapter.alter
Try to either
 - provide an implementation,
 - inherit an implementation from a superclass or mixin,
 - mark the class as abstract, or
 - provide a 'noSuchMethod' implementation.

class MysqlAdapter implements Adapter<sj.MySqlConnection> {