app.cash.sqldelight.dialect.api.QueryWithResults.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dialect-api Show documentation
Show all versions of dialect-api Show documentation
The API Dialects must implement to be compatible with SQLDelight
package app.cash.sqldelight.dialect.api
import com.alecstrong.sql.psi.core.psi.NamedElement
import com.alecstrong.sql.psi.core.psi.QueryElement
import com.alecstrong.sql.psi.core.psi.SqlAnnotatedElement
interface QueryWithResults {
var statement: SqlAnnotatedElement
val select: QueryElement
val pureTable: NamedElement?
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy