home / docs / sections_fts

Menu

sections_fts: 69

This data as json

rowid title content
69 await .get_column_type(database, resource, column) database - string The name of the database. resource - string The name of the table or view. column - string The name of the column. Returns a ColumnType subclass instance with .config populated for the specified column, or None if no column type is assigned. ct = await datasette.get_column_type( "mydb", "mytable", "email_col" ) if ct: print(ct.name) # "email" print(ct.config) # None or {...}
Powered by Datasette · Queries took 2.456ms