Package org.neo4j.jdbc
Interface Neo4jConnection
-
- All Superinterfaces:
AutoCloseable,Connection,Wrapper
- All Known Implementing Classes:
Neo4jConnectionImpl
public interface Neo4jConnection extends Connection
- Since:
- 3.0.0
- Author:
- AgileLARUS
-
-
Field Summary
-
Fields inherited from interface java.sql.Connection
TRANSACTION_NONE, TRANSACTION_READ_COMMITTED, TRANSACTION_READ_UNCOMMITTED, TRANSACTION_REPEATABLE_READ, TRANSACTION_SERIALIZABLE
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetFlattening()Get the flattening sample rows (-1 if no flattening).PropertiesgetProperties()Get the properties for this connection.StringgetUrl()Get the connection url.StringgetUserName()Get the user of this connection.-
Methods inherited from interface java.sql.Connection
abort, beginRequest, clearWarnings, close, commit, createArrayOf, createBlob, createClob, createNClob, createSQLXML, createStatement, createStatement, createStatement, createStruct, endRequest, getAutoCommit, getCatalog, getClientInfo, getClientInfo, getHoldability, getMetaData, getNetworkTimeout, getSchema, getTransactionIsolation, getTypeMap, getWarnings, isClosed, isReadOnly, isValid, nativeSQL, prepareCall, prepareCall, prepareCall, prepareStatement, prepareStatement, prepareStatement, prepareStatement, prepareStatement, prepareStatement, releaseSavepoint, rollback, rollback, setAutoCommit, setCatalog, setClientInfo, setClientInfo, setHoldability, setNetworkTimeout, setReadOnly, setSavepoint, setSavepoint, setSchema, setShardingKey, setShardingKey, setShardingKeyIfValid, setShardingKeyIfValid, setTransactionIsolation, setTypeMap
-
Methods inherited from interface java.sql.Wrapper
isWrapperFor, unwrap
-
-
-
-
Method Detail
-
getUrl
String getUrl()
Get the connection url.- Returns:
- String the connection url
-
getProperties
Properties getProperties()
Get the properties for this connection.- Returns:
- Properties the properties for this connection
-
getUserName
String getUserName()
Get the user of this connection.- Returns:
- String
-
getFlattening
int getFlattening()
Get the flattening sample rows (-1 if no flattening).- Returns:
- int
-
-