execSQLList method

Future<BoolCommitResult> execSQLList(
  1. List<String> sql
)

Run sql command List

Implementation

Future<BoolCommitResult> execSQLList(List<String> sql) async {
  return SqfEntityProvider(this).execSQLList(sql);
}