Java Code Examples for java.sql.CallableStatement#unwrap()

The following examples show how to use java.sql.CallableStatement#unwrap() . 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: Jdbc4NativeJdbcExtractor.java    From lams with GNU General Public License v2.0 4 votes vote down vote up
@Override
public CallableStatement getNativeCallableStatement(CallableStatement cs) throws SQLException {
	return cs.unwrap(this.callableStatementType);
}
 
Example 2
Source File: Jdbc4NativeJdbcExtractor.java    From spring4-understanding with Apache License 2.0 4 votes vote down vote up
@Override
public CallableStatement getNativeCallableStatement(CallableStatement cs) throws SQLException {
	return cs.unwrap(this.callableStatementType);
}
 
Example 3
Source File: Jdbc4NativeJdbcExtractor.java    From effectivejava with Apache License 2.0 4 votes vote down vote up
@Override
public CallableStatement getNativeCallableStatement(CallableStatement cs) throws SQLException {
	return cs.unwrap(this.callableStatementType);
}