commonMain.co.touchlab.sqliter.DatabaseConnection.kt Maven / Gradle / Ivy
/*
* Copyright (C) 2018 Touchlab, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package co.touchlab.sqliter
interface DatabaseConnection{
fun createStatement(sql:String):Statement
fun beginTransaction()
fun setTransactionSuccessful()
fun endTransaction()
fun close()
val closed:Boolean
}
fun DatabaseConnection.withStatement(sql: String, proc: Statement.() -> R): R {
val statement = createStatement(sql)
try{
return statement.proc()
}
finally {
statement.finalizeStatement()
}
}
fun DatabaseConnection.withTransaction(proc: (DatabaseConnection) -> R): R {
beginTransaction()
try{
val result = proc(this)
setTransactionSuccessful()
return result
}finally {
endTransaction()
}
}
fun DatabaseConnection.longForQuery(sql:String):Long = withStatement(sql){
longForQuery()
}
fun DatabaseConnection.stringForQuery(sql:String):String = withStatement(sql){
stringForQuery()
}
/**
* Gets the database version.
*
* @return the database version
*/
fun DatabaseConnection.getVersion(): Int = longForQuery("PRAGMA user_version;").toInt()
/**
* Sets the database version.
*
* @param version the new database version
*/
fun DatabaseConnection.setVersion(version: Int) {
withStatement("PRAGMA user_version = $version") { execute() }
}
val DatabaseConnection.journalMode: JournalMode
get() = JournalMode.forString(stringForQuery("PRAGMA journal_mode"))
fun DatabaseConnection.updateJournalMode(value: JournalMode):JournalMode{
return if(journalMode != value) {
JournalMode.forString(stringForQuery("PRAGMA journal_mode=${value.name}").toUpperCase())
}else{
value
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy