org.sqlite.driver.Util Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqlite-javacpp Show documentation
Show all versions of sqlite-javacpp Show documentation
JDBC Driver for SQLite using JavaCPP
The newest version!
/*
* The author disclaims copyright to this source code. In place of
* a legal notice, here is a blessing:
*
* May you do good and not evil.
* May you find forgiveness for yourself and forgive others.
* May you share freely, never taking more than you give.
*/
package org.sqlite.driver;
import org.sqlite.SQLite;
import java.sql.SQLException;
import java.sql.SQLFeatureNotSupportedException;
final class Util {
private Util() {
}
static SQLException error(String msg) {
trace(msg);
return new SQLException(msg);
}
static SQLFeatureNotSupportedException caseUnsupported(String msg) {
trace(msg);
return new SQLFeatureNotSupportedException(msg);
}
static SQLFeatureNotSupportedException unsupported(String method) {
trace(method);
return new SQLFeatureNotSupportedException(String.format("%s not implemented by SQLite JDBC driver", method));
}
static void trace(String method) {
SQLite.sqlite3_log(0, SQLite.nativeString(method));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy