Package com.zoho.analytics.jdbc
Class ZohoAnalyticsConnection
- java.lang.Object
-
- com.zoho.analytics.jdbc.ZohoAnalyticsWrapper
-
- com.zoho.analytics.jdbc.ZohoAnalyticsConnection
-
- All Implemented Interfaces:
java.lang.AutoCloseable,java.sql.Connection,java.sql.Wrapper
public class ZohoAnalyticsConnection extends ZohoAnalyticsWrapper implements java.sql.Connection
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidabort(java.util.concurrent.Executor executor)voidclearWarnings()See clearWarningsvoidclose()See closevoidcommit()Not implemented.java.sql.ArraycreateArrayOf(java.lang.String typeName, java.lang.Object[] elements)Not implementedjava.sql.BlobcreateBlob()Not implementedjava.sql.ClobcreateClob()Not implemented.java.sql.NClobcreateNClob()Not implementedjava.sql.SQLXMLcreateSQLXML()Not implementedjava.sql.StatementcreateStatement()See createStatementjava.sql.StatementcreateStatement(int resultSetType, int resultSetConcurrency)Not implemented.java.sql.StatementcreateStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability)See createStatementjava.sql.StructcreateStruct(java.lang.String typeName, java.lang.Object[] attributes)Not implementedbooleangetAutoCommit()See getAutoCommitjava.lang.StringgetCatalog()See getCatalogjava.util.PropertiesgetClientInfo()Not implementedjava.lang.StringgetClientInfo(java.lang.String name)Not implementedintgetHoldability()See getHoldabilityjava.sql.DatabaseMetaDatagetMetaData()Retrieves a ZohoAnalyticsDatabaseMetadata object that contains metadata about the database to which this Connection object represents a connection.intgetNetworkTimeout()java.lang.StringgetSchema()intgetTransactionIsolation()java.util.MapgetTypeMap()See getTypeMapjava.sql.SQLWarninggetWarnings()See getWarningsbooleanisClosed()See isClosedbooleanisReadOnly()See isReadOnlybooleanisValid(int timeout)Not implementedjava.lang.StringnativeSQL(java.lang.String sql)Not implemented.java.sql.CallableStatementprepareCall(java.lang.String sql)Not implemented.java.sql.CallableStatementprepareCall(java.lang.String sql, int resultSetType, int resultSetConcurrency)Not implemented.java.sql.CallableStatementprepareCall(java.lang.String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability)Not implemented.java.sql.PreparedStatementprepareStatement(java.lang.String sql)Not implemented.java.sql.PreparedStatementprepareStatement(java.lang.String sql, int autoGeneratedKeys)Not implemented.java.sql.PreparedStatementprepareStatement(java.lang.String sql, int[] columnIndexes)Not implemented.java.sql.PreparedStatementprepareStatement(java.lang.String sql, int resultSetType, int resultSetConcurrency)Not implemented.java.sql.PreparedStatementprepareStatement(java.lang.String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability)See prepareStatementjava.sql.PreparedStatementprepareStatement(java.lang.String sql, java.lang.String[] columnNames)Not implemented.voidreleaseSavepoint(java.sql.Savepoint savepoint)Not implemented.voidrollback()Not implemented.voidrollback(java.sql.Savepoint savepoint)Not implemented.voidsetAutoCommit(boolean commit)See setAutoCommitvoidsetCatalog(java.lang.String catalog)See setCatalogvoidsetClientInfo(java.lang.String name, java.lang.String value)Not implementedvoidsetClientInfo(java.util.Properties properties)Not implementedvoidsetHoldability(int holdability)See setHoldabilityvoidsetNetworkTimeout(java.util.concurrent.Executor executor, int milliseconds)voidsetReadOnly(boolean read)See setReadOnlyjava.sql.SavepointsetSavepoint()Not implemented.java.sql.SavepointsetSavepoint(java.lang.String savepoint)Not implemented.voidsetSchema(java.lang.String schema)voidsetTransactionIsolation(int level)Not implemented.voidsetTypeMap(java.util.Map map)Not implemented.-
Methods inherited from class com.zoho.analytics.jdbc.ZohoAnalyticsWrapper
isWrapperFor, unwrap
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
Method Detail
-
clearWarnings
public void clearWarnings() throws java.sql.SQLExceptionSee clearWarnings- Specified by:
clearWarningsin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
close
public void close() throws java.sql.SQLExceptionSee close- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
commit
public void commit() throws java.sql.SQLExceptionNot implemented.See commit- Specified by:
commitin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
createStatement
public java.sql.Statement createStatement() throws java.sql.SQLExceptionSee createStatement- Specified by:
createStatementin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
createStatement
public java.sql.Statement createStatement(int resultSetType, int resultSetConcurrency) throws java.sql.SQLExceptionNot implemented.See createStatement- Specified by:
createStatementin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
createStatement
public java.sql.Statement createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws java.sql.SQLExceptionSee createStatement- Specified by:
createStatementin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
getAutoCommit
public boolean getAutoCommit() throws java.sql.SQLExceptionSee getAutoCommit- Specified by:
getAutoCommitin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
getCatalog
public java.lang.String getCatalog() throws java.sql.SQLExceptionSee getCatalog- Specified by:
getCatalogin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
getHoldability
public int getHoldability() throws java.sql.SQLExceptionSee getHoldability- Specified by:
getHoldabilityin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
getMetaData
public java.sql.DatabaseMetaData getMetaData() throws java.sql.SQLExceptionRetrieves a ZohoAnalyticsDatabaseMetadata object that contains metadata about the database to which this Connection object represents a connection. The metadata includes information about the database's tables, its supported SQL grammar, the capabilities of this connection, and so on.See getMetaData- Specified by:
getMetaDatain interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
getTransactionIsolation
public int getTransactionIsolation() throws java.sql.SQLException- Specified by:
getTransactionIsolationin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
getTypeMap
public java.util.Map getTypeMap() throws java.sql.SQLExceptionSee getTypeMap- Specified by:
getTypeMapin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
getWarnings
public java.sql.SQLWarning getWarnings() throws java.sql.SQLExceptionSee getWarnings- Specified by:
getWarningsin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
isClosed
public boolean isClosed() throws java.sql.SQLExceptionSee isClosed- Specified by:
isClosedin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
isReadOnly
public boolean isReadOnly() throws java.sql.SQLExceptionSee isReadOnly- Specified by:
isReadOnlyin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
nativeSQL
public java.lang.String nativeSQL(java.lang.String sql) throws java.sql.SQLExceptionNot implemented.See nativeSQL- Specified by:
nativeSQLin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
prepareCall
public java.sql.CallableStatement prepareCall(java.lang.String sql) throws java.sql.SQLExceptionNot implemented.See prepareCall- Specified by:
prepareCallin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
prepareCall
public java.sql.CallableStatement prepareCall(java.lang.String sql, int resultSetType, int resultSetConcurrency) throws java.sql.SQLExceptionNot implemented.See prepareCall- Specified by:
prepareCallin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
prepareCall
public java.sql.CallableStatement prepareCall(java.lang.String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws java.sql.SQLExceptionNot implemented.See prepareCall- Specified by:
prepareCallin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
prepareStatement
public java.sql.PreparedStatement prepareStatement(java.lang.String sql) throws java.sql.SQLExceptionNot implemented.See prepareStatement- Specified by:
prepareStatementin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
prepareStatement
public java.sql.PreparedStatement prepareStatement(java.lang.String sql, java.lang.String[] columnNames) throws java.sql.SQLExceptionNot implemented.See prepareStatement- Specified by:
prepareStatementin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
prepareStatement
public java.sql.PreparedStatement prepareStatement(java.lang.String sql, int autoGeneratedKeys) throws java.sql.SQLExceptionNot implemented.See prepareStatement- Specified by:
prepareStatementin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
prepareStatement
public java.sql.PreparedStatement prepareStatement(java.lang.String sql, int[] columnIndexes) throws java.sql.SQLExceptionNot implemented.See prepareStatement- Specified by:
prepareStatementin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
prepareStatement
public java.sql.PreparedStatement prepareStatement(java.lang.String sql, int resultSetType, int resultSetConcurrency) throws java.sql.SQLExceptionNot implemented.See prepareStatement- Specified by:
prepareStatementin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
prepareStatement
public java.sql.PreparedStatement prepareStatement(java.lang.String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws java.sql.SQLExceptionSee prepareStatement- Specified by:
prepareStatementin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
releaseSavepoint
public void releaseSavepoint(java.sql.Savepoint savepoint) throws java.sql.SQLExceptionNot implemented.See releaseSavepoint- Specified by:
releaseSavepointin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
rollback
public void rollback() throws java.sql.SQLExceptionNot implemented.See rollback- Specified by:
rollbackin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
rollback
public void rollback(java.sql.Savepoint savepoint) throws java.sql.SQLExceptionNot implemented.See rollback- Specified by:
rollbackin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
setAutoCommit
public void setAutoCommit(boolean commit) throws java.sql.SQLExceptionSee setAutoCommit- Specified by:
setAutoCommitin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
setCatalog
public void setCatalog(java.lang.String catalog) throws java.sql.SQLExceptionSee setCatalog- Specified by:
setCatalogin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
setHoldability
public void setHoldability(int holdability) throws java.sql.SQLExceptionSee setHoldability- Specified by:
setHoldabilityin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
setReadOnly
public void setReadOnly(boolean read) throws java.sql.SQLExceptionSee setReadOnly- Specified by:
setReadOnlyin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
setSavepoint
public java.sql.Savepoint setSavepoint() throws java.sql.SQLExceptionNot implemented.See setSavepoint- Specified by:
setSavepointin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
setSavepoint
public java.sql.Savepoint setSavepoint(java.lang.String savepoint) throws java.sql.SQLExceptionNot implemented.See setSavepoint- Specified by:
setSavepointin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
setTransactionIsolation
public void setTransactionIsolation(int level) throws java.sql.SQLExceptionNot implemented.- Specified by:
setTransactionIsolationin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
setTypeMap
public void setTypeMap(java.util.Map map) throws java.sql.SQLExceptionNot implemented.See setTypeMap- Specified by:
setTypeMapin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
createClob
public java.sql.Clob createClob() throws java.sql.SQLExceptionNot implemented.See createClob- Specified by:
createClobin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
createBlob
public java.sql.Blob createBlob() throws java.sql.SQLExceptionNot implementedSeecreateBlob- Specified by:
createBlobin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
createNClob
public java.sql.NClob createNClob() throws java.sql.SQLExceptionNot implementedSeecreateNClob- Specified by:
createNClobin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
createSQLXML
public java.sql.SQLXML createSQLXML() throws java.sql.SQLExceptionNot implementedSeecreateSQLXML- Specified by:
createSQLXMLin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
createStruct
public java.sql.Struct createStruct(java.lang.String typeName, java.lang.Object[] attributes) throws java.sql.SQLExceptionNot implementedSeecreateStruct- Specified by:
createStructin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
createArrayOf
public java.sql.Array createArrayOf(java.lang.String typeName, java.lang.Object[] elements) throws java.sql.SQLExceptionNot implemented- Specified by:
createArrayOfin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
getClientInfo
public java.util.Properties getClientInfo() throws java.sql.SQLExceptionNot implemented- Specified by:
getClientInfoin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
getClientInfo
public java.lang.String getClientInfo(java.lang.String name) throws java.sql.SQLExceptionNot implemented- Specified by:
getClientInfoin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
setClientInfo
public void setClientInfo(java.util.Properties properties) throws java.sql.SQLClientInfoExceptionNot implemented- Specified by:
setClientInfoin interfacejava.sql.Connection- Throws:
java.sql.SQLClientInfoException
-
setClientInfo
public void setClientInfo(java.lang.String name, java.lang.String value) throws java.sql.SQLClientInfoExceptionNot implemented- Specified by:
setClientInfoin interfacejava.sql.Connection- Throws:
java.sql.SQLClientInfoException
-
isValid
public boolean isValid(int timeout) throws java.sql.SQLExceptionNot implementedSeeisValid- Specified by:
isValidin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
setSchema
public void setSchema(java.lang.String schema) throws java.sql.SQLException- Specified by:
setSchemain interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
getSchema
public java.lang.String getSchema() throws java.sql.SQLException- Specified by:
getSchemain interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
abort
public void abort(java.util.concurrent.Executor executor) throws java.sql.SQLException- Specified by:
abortin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
setNetworkTimeout
public void setNetworkTimeout(java.util.concurrent.Executor executor, int milliseconds) throws java.sql.SQLException- Specified by:
setNetworkTimeoutin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
getNetworkTimeout
public int getNetworkTimeout() throws java.sql.SQLException- Specified by:
getNetworkTimeoutin interfacejava.sql.Connection- Throws:
java.sql.SQLException
-
-