项目:BibliotecaPS
文件:JDBC42CallableStatementWrapper.java
/**
* Support for java.sql.JDBCType/java.sql.sqlType.
*
* @param parameterName
* @param sqlType
* @param typeName
* @throws sqlException
*/
public void registerOutParameter(String parameterName,sqlType sqlType,String typeName) throws sqlException {
try {
if (this.wrappedStmt != null) {
((CallableStatement) this.wrappedStmt).registerOutParameter(parameterName,sqlType,typeName);
} else {
throw sqlError.createsqlException("No operations allowed after statement closed",sqlError.sql_STATE_GENERAL_ERROR,this.exceptionInterceptor);
}
} catch (sqlException sqlEx) {
checkAndFireConnectionError(sqlEx);
}
}
项目:ProyectoPacientes
文件:JDBC42CallableStatementWrapper.java
项目:ProyectoPacientes
文件:JDBC42CallableStatementWrapper.java
/**
* Support for java.sql.JDBCType/java.sql.sqlType.
*
* @param parameterName
* @param sqlType
* @param scale
* @throws sqlException
*/
public void registerOutParameter(String parameterName,int scale) throws sqlException {
try {
if (this.wrappedStmt != null) {
((CallableStatement) this.wrappedStmt).registerOutParameter(parameterName,scale);
} else {
throw sqlError.createsqlException("No operations allowed after statement closed",this.exceptionInterceptor);
}
} catch (sqlException sqlEx) {
checkAndFireConnectionError(sqlEx);
}
}
项目:BibliotecaPS
文件:JDBC42CallableStatementWrapper.java
/**
* Support for java.sql.JDBCType/java.sql.sqlType.
*
* @param parameterIndex
* @param sqlType
* @throws sqlException
*/
public void registerOutParameter(int parameterIndex,sqlType sqlType) throws sqlException {
try {
if (this.wrappedStmt != null) {
((CallableStatement) this.wrappedStmt).registerOutParameter(parameterIndex,sqlType);
} else {
throw sqlError.createsqlException("No operations allowed after statement closed",this.exceptionInterceptor);
}
} catch (sqlException sqlEx) {
checkAndFireConnectionError(sqlEx);
}
}
项目:ProyectoPacientes
文件:JDBC42CallableStatementWrapper.java
/**
* Support for java.sql.JDBCType/java.sql.sqlType.
*
* @param parameterIndex
* @param x
* @param targetsqlType
* @throws sqlException
*/
public void setobject(int parameterIndex,Object x,sqlType targetsqlType) throws sqlException {
try {
if (this.wrappedStmt != null) {
((CallableStatement) this.wrappedStmt).setobject(parameterIndex,x,targetsqlType);
} else {
throw sqlError.createsqlException("No operations allowed after statement closed",this.exceptionInterceptor);
}
} catch (sqlException sqlEx) {
checkAndFireConnectionError(sqlEx);
}
}
项目:lams
文件:JDBC42CallableStatementWrapper.java
/**
* Support for java.sql.JDBCType/java.sql.sqlType.
*
* @param parameterIndex
* @param x
* @param targetsqlType
* @param scaleOrLength
* @throws sqlException
*/
public void setobject(int parameterIndex,sqlType targetsqlType,int scaleOrLength) throws sqlException {
try {
if (this.wrappedStmt != null) {
((CallableStatement) this.wrappedStmt).setobject(parameterIndex,targetsqlType,scaleOrLength);
} else {
throw sqlError.createsqlException("No operations allowed after statement closed",this.exceptionInterceptor);
}
} catch (sqlException sqlEx) {
checkAndFireConnectionError(sqlEx);
}
}
项目:ProyectoPacientes
文件:JDBC42CallableStatementWrapper.java
/**
* Support for java.sql.JDBCType/java.sql.sqlType.
*
* @param parameterName
* @param sqlType
* @throws sqlException
*/
public void registerOutParameter(String parameterName,sqlType sqlType) throws sqlException {
try {
if (this.wrappedStmt != null) {
((CallableStatement) this.wrappedStmt).registerOutParameter(parameterName,this.exceptionInterceptor);
}
} catch (sqlException sqlEx) {
checkAndFireConnectionError(sqlEx);
}
}
项目:the-vigilantes
文件:JDBC42CallableStatementWrapper.java
/**
* Support for java.sql.JDBCType/java.sql.sqlType.
*
* @param parameterIndex
* @param sqlType
* @param typeName
* @throws sqlException
*/
public void registerOutParameter(int parameterIndex,String typeName) throws sqlException {
try {
if (this.wrappedStmt != null) {
((CallableStatement) this.wrappedStmt).registerOutParameter(parameterIndex,this.exceptionInterceptor);
}
} catch (sqlException sqlEx) {
checkAndFireConnectionError(sqlEx);
}
}
项目:the-vigilantes
文件:JDBC42CallableStatementWrapper.java
项目:the-vigilantes
文件:JDBC42CallableStatementWrapper.java
项目:the-vigilantes
文件:JDBC42CallableStatementWrapper.java
项目:the-vigilantes
文件:JDBC42CallableStatementWrapper.java
项目:the-vigilantes
文件:JDBC42CallableStatementWrapper.java
/**
* Support for java.sql.JDBCType/java.sql.sqlType.
*
* @param parameterIndex
* @param x
* @param targetsqlType
* @param scaleOrLength
* @throws sqlException
*/
public void setobject(int parameterIndex,this.exceptionInterceptor);
}
} catch (sqlException sqlEx) {
checkAndFireConnectionError(sqlEx);
}
}
项目:the-vigilantes
文件:JDBC42CallableStatementWrapper.java
/**
* Support for java.sql.JDBCType/java.sql.sqlType.
*
* @param parameterName
* @param x
* @param targetsqlType
* @param scaleOrLength
* @throws sqlException
*/
public void setobject(String parameterName,int scaleOrLength) throws sqlException {
try {
if (this.wrappedStmt != null) {
((CallableStatement) this.wrappedStmt).setobject(parameterName,this.exceptionInterceptor);
}
} catch (sqlException sqlEx) {
checkAndFireConnectionError(sqlEx);
}
}
项目:ProyectoPacientes
文件:JDBC42CallableStatementWrapper.java
项目:lams
文件:JDBC42CallableStatementWrapper.java
项目:lams
文件:JDBC42PreparedStatementWrapper.java
/**
* Support for java.sql.JDBCType/java.sql.sqlType.
*
* @param parameterIndex
* @param x
* @param targetsqlType
* @throws sqlException
*/
public void setobject(int parameterIndex,sqlType targetsqlType) throws sqlException {
try {
if (this.wrappedStmt != null) {
((PreparedStatement) this.wrappedStmt).setobject(parameterIndex,this.exceptionInterceptor);
}
} catch (sqlException sqlEx) {
checkAndFireConnectionError(sqlEx);
}
}
项目:BibliotecaPS
文件:JDBC42CallableStatementWrapper.java
项目:lams
文件:JDBC42CallableStatementWrapper.java
项目:lams
文件:JDBC42CallableStatementWrapper.java
/**
* Support for java.sql.JDBCType/java.sql.sqlType.
*
* @param parameterName
* @param x
* @param targetsqlType
* @throws sqlException
*/
public void setobject(String parameterName,sqlType targetsqlType) throws sqlException {
try {
if (this.wrappedStmt != null) {
((CallableStatement) this.wrappedStmt).setobject(parameterName,this.exceptionInterceptor);
}
} catch (sqlException sqlEx) {
checkAndFireConnectionError(sqlEx);
}
}
项目:OpenVertretung
文件:JDBC42CallableStatementWrapper.java
项目:BibliotecaPS
文件:JDBC42PreparedStatementWrapper.java
/**
* Support for java.sql.JDBCType/java.sql.sqlType.
*
* @param parameterIndex
* @param x
* @param targetsqlType
* @param scaleOrLength
* @throws sqlException
*/
public void setobject(int parameterIndex,int scaleOrLength) throws sqlException {
try {
if (this.wrappedStmt != null) {
((PreparedStatement) this.wrappedStmt).setobject(parameterIndex,this.exceptionInterceptor);
}
} catch (sqlException sqlEx) {
checkAndFireConnectionError(sqlEx);
}
}
项目:OpenVertretung
文件:JDBC42CallableStatementWrapper.java
项目:elastic-db-tools-for-java
文件:MultiShardResultSet.java
项目:OpenVertretung
文件:JDBC42CallableStatementWrapper.java
项目:lams
文件:JDBC42CallableStatementWrapper.java
项目:OpenVertretung
文件:JDBC42CallableStatementWrapper.java
项目:OpenVertretung
文件:JDBC42CallableStatementWrapper.java
/**
* Support for java.sql.JDBCType/java.sql.sqlType.
*
* @param parameterName
* @param x
* @param targetsqlType
* @param scaleOrLength
* @throws sqlException
*/
public void setobject(String parameterName,this.exceptionInterceptor);
}
} catch (sqlException sqlEx) {
checkAndFireConnectionError(sqlEx);
}
}
项目:ProyectoPacientes
文件:JDBC42CallableStatementWrapper.java
项目:BibliotecaPS
文件:JDBC42PreparedStatementWrapper.java
/**
* {@inheritDoc}
*
* @see jp.co.future.uroborosql.fluent.sqlFluent#inOutParam(java.lang.String,java.lang.Object,java.sql.sqlType)
*/
@SuppressWarnings("unchecked")
@Override
public T inOutParam(final String paramName,final Object value,final sqlType sqlType) {
context().inOutParam(paramName,value,sqlType);
return (T) this;
}
项目:BibliotecaPS
文件:JDBC42CallableStatementWrapper.java
项目:ProyectoPacientes
文件:JDBC42PreparedStatementWrapper.java
/**
* Support for java.sql.JDBCType/java.sql.sqlType.
*
* @param parameterIndex
* @param x
* @param targetsqlType
* @param scaleOrLength
* @throws sqlException
*/
public void setobject(int parameterIndex,this.exceptionInterceptor);
}
} catch (sqlException sqlEx) {
checkAndFireConnectionError(sqlEx);
}
}
项目:elastic-db-tools-for-java
文件:MultiShardResultSet.java
@Override
public void updateObject(String columnLabel,int scaleOrLength) throws sqlException {
this.getCurrentResultSet().updateObject(columnLabel,scaleOrLength);
}
项目:BibliotecaPS
文件:JDBC42CallableStatementWrapper.java
/**
* Support for java.sql.JDBCType/java.sql.sqlType.
*
* @param parameterIndex
* @param sqlType
* @param scale
* @throws sqlException
*/
public void registerOutParameter(int parameterIndex,int scale) throws sqlException {
try {
if (this.wrappedStmt != null) {
((CallableStatement) this.wrappedStmt).registerOutParameter(parameterIndex,this.exceptionInterceptor);
}
} catch (sqlException sqlEx) {
checkAndFireConnectionError(sqlEx);
}
}
项目:BibliotecaPS
文件:JDBC42CallableStatementWrapper.java
项目:BibliotecaPS
文件:JDBC42CallableStatementWrapper.java
项目:lams
文件:JDBC42ServerPreparedStatement.java
项目:the-vigilantes
文件:JDBC42CallableStatement.java
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。