registerTableCreator

fun registerTableCreator(creator: (SQLiteDatabase) -> Unit)

Register a table creator function that will be called when the database is created. This allows multiple tables to be created in the same database.

Parameters

creator

A function that creates a table in the given SQLiteDatabase.