
net.ofk.dbmapper.defaults.impl.DefaultEngine.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbmapper Show documentation
Show all versions of dbmapper Show documentation
Provides access to data storage to run queries and to map results onto plain objects
The newest version!
package net.ofk.dbmapper.defaults.impl;
import java.sql.Connection
/**
* Default engine has no its own specific query language variant (dialect)
* and doesn't need any special preparation of a connection.
* It also uses a MySQL-like date format.
*/
class DefaultEngine : BaseEngine(DefaultFormatterBuilder.build()) {
override fun prepareConnection(conn: Connection) {}
override fun variant() = ""
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy