Package-level declarations

Types

Link copied to clipboard
interface DatabaseHandler
Link copied to clipboard
data class Sql(val transactions: List<List<String>>)

Represents a list of SQL transactions, where each transaction consists of one or more SQL statements. Each transaction MUST NOT contain the BEGIN/COMMIT statements. Each inner list is a single transaction, and each String is a single statement within that transaction.