Searched defs:getConnection (Results 1 - 8 of 8) sorted by relevance

/libcore/luni/src/main/java/javax/sql/
H A DDataSource.java64 public Connection getConnection() throws SQLException; method in interface:DataSource
80 public Connection getConnection(String theUsername, String thePassword) method in interface:DataSource
H A DRowSetInternal.java38 public Connection getConnection() throws SQLException; method in interface:RowSetInternal
H A DPooledConnection.java40 * {@link DataSource#getConnection} method. Behind the scenes, the connection
90 * {@code DataSource.getConnection()} and there are no {@code
97 public Connection getConnection() throws SQLException; method in interface:PooledConnection
/libcore/luni/src/test/java/libcore/javax/sql/
H A DOldConnectionEventTest.java54 public Connection getConnection() throws SQLException { method in class:OldConnectionEventTest.Impl_PooledConnection
/libcore/luni/src/test/java/tests/support/
H A DSupport_SQL.java75 public static Connection getConnection() throws SQLException { method in class:Support_SQL
77 return DriverManager.getConnection(Support_SQL.sqlUrl,
85 public static Connection getConnection(String url, String login, method in class:Support_SQL
88 return DriverManager.getConnection(url, login, password);
/libcore/luni/src/main/java/java/sql/
H A DDriverManager.java143 public static Connection getConnection(String url) throws SQLException { method in class:DriverManager
144 return getConnection(url, new Properties());
165 public static Connection getConnection(String url, Properties info) throws SQLException { method in class:DriverManager
204 public static Connection getConnection(String url, String user, String password) method in class:DriverManager
213 return getConnection(url, theProperties);
H A DStatement.java359 public Connection getConnection() throws SQLException; method in interface:Statement
H A DDatabaseMetaData.java748 public Connection getConnection() throws SQLException; method in interface:DatabaseMetaData

Completed in 9112 milliseconds