I'm trying to load a prepopulated database in SQL ...
# squarelibraries
j
I'm trying to load a prepopulated database in SQL delight (Android). Is it enough to just add the database in main/assests/database and pass the filename to SqliteDriver?
Copy code
AndroidSqliteDriver(
    schema = ExcerptDatabase.Schema,
    context = app,
    name = myDB.db
)
I tried that but it's not reading the prepopulated database.