java/jdbc-loopback-driver/src/main/java/info/globalcode/jdbc/loopback/Connection.java
branchv_0
changeset 237 7e08730da258
parent 171 701ec4db43fb
child 250 aae5009bd0af
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/java/jdbc-loopback-driver/src/main/java/info/globalcode/jdbc/loopback/Connection.java	Mon Mar 04 17:06:42 2019 +0100
@@ -0,0 +1,135 @@
+/**
+ * SQL-DK
+ * Copyright © 2014 František Kučera (frantovo.cz)
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+package info.globalcode.jdbc.loopback;
+
+import java.sql.SQLClientInfoException;
+import java.sql.SQLException;
+import java.sql.SQLWarning;
+import java.sql.Savepoint;
+import java.util.Map;
+import java.util.Properties;
+import java.util.concurrent.Executor;
+
+/**
+ *
+ * @author Ing. František Kučera (frantovo.cz)
+ */
+public class Connection extends AbstractConnection {
+
+	private String url;
+	private Properties info;
+
+	public Connection(String url, Properties info) {
+		this.url = url;
+		this.info = info;
+	}
+
+	@Override
+	public java.sql.PreparedStatement prepareStatement(String sql) throws SQLException {
+		return new PreparedStatement();
+	}
+
+	@Override
+	public void setAutoCommit(boolean autoCommit) throws SQLException {
+	}
+
+	@Override
+	public boolean getAutoCommit() throws SQLException {
+		return true;
+	}
+
+	@Override
+	public void commit() throws SQLException {
+	}
+
+	@Override
+	public void rollback() throws SQLException {
+	}
+
+	@Override
+	public void close() throws SQLException {
+	}
+
+	@Override
+	public boolean isClosed() throws SQLException {
+		return false;
+	}
+
+	@Override
+	public void setReadOnly(boolean readOnly) throws SQLException {
+	}
+
+	@Override
+	public boolean isReadOnly() throws SQLException {
+		return true;
+	}
+
+	@Override
+	public void setCatalog(String catalog) throws SQLException {
+	}
+
+	@Override
+	public void setTransactionIsolation(int level) throws SQLException {
+	}
+
+	@Override
+	public SQLWarning getWarnings() throws SQLException {
+		return null;
+	}
+
+	@Override
+	public void clearWarnings() throws SQLException {
+	}
+
+	@Override
+	public void setTypeMap(Map<String, Class<?>> map) throws SQLException {
+	}
+
+	@Override
+	public void setHoldability(int holdability) throws SQLException {
+	}
+
+	@Override
+	public void rollback(Savepoint savepoint) throws SQLException {
+	}
+
+	@Override
+	public void releaseSavepoint(Savepoint savepoint) throws SQLException {
+	}
+
+	@Override
+	public boolean isValid(int timeout) throws SQLException {
+		return true;
+	}
+
+	@Override
+	public void setClientInfo(String name, String value) throws SQLClientInfoException {
+	}
+
+	@Override
+	public void setClientInfo(Properties properties) throws SQLClientInfoException {
+	}
+
+	@Override
+	public void abort(Executor executor) throws SQLException {
+	}
+
+	@Override
+	public void setNetworkTimeout(Executor executor, int milliseconds) throws SQLException {
+	}
+}