com.mysql.jdbc.NotImplemented Java Examples

The following examples show how to use com.mysql.jdbc.NotImplemented. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SpxDBPool.java    From Albianj2 with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
@Override
public Connection getConnection() throws SQLException {
    AlbianServiceRouter.getLogger2().log(IAlbianLoggerService2.AlbianSqlLoggerName,
            "DBPOOL", AlbianLoggerLevel.Error,
            "please use the same function with argument sessionid.", cf.getPoolName());
    throw new NotImplemented();
}
 
Example #2
Source File: SpxDBPool.java    From Albianj2 with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
@Override
public Connection getConnection(String username, String password) throws SQLException {
    AlbianServiceRouter.getLogger2().log(IAlbianLoggerService2.AlbianSqlLoggerName,
            "DBPOOL", AlbianLoggerLevel.Error,
            "please use the same function with argument sessionid.", cf.getPoolName());
    throw new NotImplemented();
}
 
Example #3
Source File: StatementsTest.java    From r-course with MIT License 4 votes vote down vote up
public void testStubbed() throws SQLException {
    try {
        this.stmt.getResultSetHoldability();
    } catch (NotImplemented notImplEx) {
    }
}
 
Example #4
Source File: StatementsTest.java    From Komondor with GNU General Public License v3.0 4 votes vote down vote up
public void testStubbed() throws SQLException {
    try {
        this.stmt.getResultSetHoldability();
    } catch (NotImplemented notImplEx) {
    }
}