table_xinfo method

List<LiteTableInfoX> table_xinfo(
  1. String table, {
  2. String? schema,
})

Implementation

List<LiteTableInfoX> table_xinfo(String table, {String? schema}) {
  return query("table_xinfo"._schema(schema), args: [table]).mapList(
      (e) => (name: e["name"], cid: e["cid"], type: e["type"] ?? "TEXT", notnull: e["notnull"], dflt_value: e["dflt_value"], pk: e["pk"], hidden: e["hidden"]));
}