complete method

int complete(
  1. String sql
)
inherited

Implementation

int complete(String sql) {
  final sqlMeta = sql._metaNativeUtf8();
  final ptrSql = sqlMeta.ptr;
  try {
    return _h_sqlite3_complete(ptrSql);
  } finally {
    pkgffi.malloc.free(ptrSql);
  }
}