createTableWithSchema method
Future<void>
createTableWithSchema({
- required String name,
- required ArrowSchema schema,
- SqliteArrowBatches? batches,
- SqliteCreateMode mode = SqliteCreateMode.create,
Implementation
Future<void> createTableWithSchema({
required String name,
required ArrowSchema schema,
SqliteArrowBatches? batches,
SqliteCreateMode mode = SqliteCreateMode.create,
}) {
return client.createTableWithSchema(database: database, name: name, schema: schema, batches: batches, mode: mode, namespace: namespace);
}