hi, i am trying out sqldelight on web with the asy...
# squarelibraries
n
hi, i am trying out sqldelight on web with the async webworker stuff i am getting weird error messages
Copy code
IllegalStateException: The driver used with SQLDelight is asynchronous, so SQLDelight should be configured for
asynchronous usage:

sqldelight {
  databases {
    MyDatabase {
      generateAsync = true
    }
  }
}
even though it is configured for it..
Copy code
sqldelight {
    databases {
        create("Database") {
            packageName.set("database")
            generateAsync.set(true)
        }
    }
}
any idea what might be missing ?
137 Views