PortalEazeSqlService class

Constructors

PortalEazeSqlService.new()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

createHistoryTracking({required Map<String, dynamic> data}) Future<Map?>
createIfua({required dynamic json}) Future<Map?>
deleteAllHistoryTracking() Future
deleteAllIfua() Future
deleteHistoryTracking(int id) Future
getHistoryTracking() Future<List>
getIfua() Future<List>
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

createTableHistoryTracking(Database database) Future<void>
createTableHistoryTransaction(Database database) Future<void>
db() Future<Database>
sqlRunDelete({required Database db, required String tableName, required int id}) Future<int>
sqlRunDeleteAllRecord({required Database db, required String tableName}) Future<int>
sqlRunEdit({required Database db, required String tableName, required Map<String, dynamic> change, String? where}) Future<int>
sqlRunInsert({required Database db, required Map<String, dynamic> data, required String tableName}) Future<int>
sqlRunRead({required Database db, required String tableName, String? where, String? orderBy, int? limit, int? offset}) Future<List<Map<String, dynamic>>>