本文整理汇总了Java中java.sql.SQLException.getErrorCode方法的典型用法代码示例。如果您正苦于以下问题:Java SQLException.getErrorCode方法的具体用法?Java SQLException.getErrorCode怎么用?Java SQLException.getErrorCode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.sql.SQLException
的用法示例。
在下文中一共展示了SQLException.getErrorCode方法的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: cargarDatos
import java.sql.SQLException; //导入方法依赖的package包/类
private void cargarDatos() {
try {
stmt=conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
String sql="select * from libro";
rset=stmt.executeQuery(sql); // Ejecutamos consulta
rset.next(); // Pasamos de registro
totalRegistros();
mostrarDatos();
} catch (SQLException e) {
if(e.getErrorCode()==17011){
JOptionPane.showMessageDialog(null, "No hay ning�n registro en la base de datos, cree uno!");
setBotones(false);
setText(false);
btnNuevo.setEnabled(true);
} else {
JOptionPane.showMessageDialog(null, e.getMessage() + " " + e.getErrorCode());
}
}
}
示例2: setClientInfo
import java.sql.SQLException; //导入方法依赖的package包/类
public void setClientInfo(
Properties properties) throws SQLClientInfoException {
try {
validate();
} catch (SQLException e) {
throw new SQLClientInfoException(e.getMessage(), e.getSQLState(),
e.getErrorCode(), (Map<String, ClientInfoStatus>) null, e);
}
this.getConnection().setClientInfo(properties);
}
示例3: extractErrorCode
import java.sql.SQLException; //导入方法依赖的package包/类
/**
* For the given SQLException, locates the vendor-specific error code.
*
* @param sqlException The exception from which to extract the SQLState
* @return The error code.
*/
public static int extractErrorCode(SQLException sqlException) {
int errorCode = sqlException.getErrorCode();
SQLException nested = sqlException.getNextException();
while ( errorCode == 0 && nested != null ) {
errorCode = nested.getErrorCode();
nested = nested.getNextException();
}
return errorCode;
}
示例4: validateImpl
import java.sql.SQLException; //导入方法依赖的package包/类
/**
* Helper function to do validation, this will be called using TFH retry policy.
*
* @param sm
* Shard map for a mapping to validate
* @param key
* Key to lookup and validate
*/
private static void validateImpl(ShardMap sm,
int key) throws SQLException {
try (Connection conn = sm.openConnectionForKey(key, Globals.SHARD_USER_CONN_STRING, ConnectionOptions.Validate)) {
conn.close();
}
catch (SQLException e) {
// Error Number 3980: The request failed to run because the batch is aborted, this can be
// caused by abort signal sent from client, or another request is running in the same session,
// which makes the session busy.
// Error Number = 0, Class = 20, Message = The connection is broken and recovery is not
// possible. The connection is marked by the server as unrecoverable. No attempt was made to
// restore the connection.
// Error Number = 0, Class = 11, Message = A severe error occurred on the current command.
// The results, if any, should be discarded.
switch (e.getErrorCode()) {
case 0:
if (e.getErrorCode() != 20 && e.getErrorCode() != 11) {
throw e;
}
break;
case 3980:
break;
default:
throw e;
}
}
}
示例5: interceptException
import java.sql.SQLException; //导入方法依赖的package包/类
public SQLException interceptException(SQLException sqlEx, com.mysql.jdbc.Connection conn) {
if (sqlEx.getErrorCode() == 1295 || sqlEx.getMessage().contains("This command is not supported in the prepared statement protocol yet")) {
// SQLException will not be re-thrown if emulateUnsupportedPstmts=true, thus throw RuntimeException to fail the test
throw new RuntimeException(sqlEx);
}
return sqlEx;
}
示例6: hasDeadlockOrTimeoutRolledBackTx
import java.sql.SQLException; //导入方法依赖的package包/类
protected final boolean hasDeadlockOrTimeoutRolledBackTx(SQLException ex) {
int vendorCode = ex.getErrorCode();
switch (vendorCode) {
case MysqlErrorNumbers.ER_LOCK_DEADLOCK:
case MysqlErrorNumbers.ER_LOCK_TABLE_FULL:
return true;
case MysqlErrorNumbers.ER_LOCK_WAIT_TIMEOUT:
return !this.version5013OrNewer;
default:
return false;
}
}
示例7: run
import java.sql.SQLException; //导入方法依赖的package包/类
public int run(Connection conn,Clock clock, WorkloadConfiguration wrklConf) throws SQLException {
//initializing all prepared statements
stmt = this.getPreparedStatement(conn, get_query(clock,wrklConf));
LOG.debug("Query SQL STMT:"+ get_query(clock,wrklConf).getSQL());
if (owner != null)
owner.setCurrStatement(stmt);
//LOG.debug(this.getClass());
LOG.info(this.getClass());
ResultSet rs = null;
try {
rs = stmt.executeQuery();
} catch(SQLException ex) {
// If the system thinks we're missing a prepared statement, then we
// should regenerate them.
if (ex.getErrorCode() == 0 && ex.getSQLState() != null
&& ex.getSQLState().equals("07003"))
{
this.resetPreparedStatements();
rs = stmt.executeQuery();
}
else {
throw ex;
}
}
int t = 0;
while (rs.next()) {
t = t+1;
}
if (owner != null)
owner.setCurrStatement(null);
return t;
}
示例8: write
import java.sql.SQLException; //导入方法依赖的package包/类
/**
* Write the records to the database. If a failure occurs, it tries to
* use the configured handler to recover from the failure, otherwise
* a SQLException is throw
*/
protected void write(List<SqoopRecord> records)
throws SQLException, IOException {
PreparedStatement stmt = null;
int retryCount = RETRY_MAX;
boolean doRetry = true;
do {
try {
// Establish the connection to be used if not yet created
getConnection();
// Get the prepared statement to use for writing the records
stmt = getPreparedStatement(records);
// Execute the prepared statement
executeStatement(stmt, records);
// Statement executed successfully, no need to retry
doRetry = false;
} catch (SQLException sqlEx) {
LOG.warn("Trying to recover from DB write failure: ", sqlEx);
// Use configured connection handler to recover from the connection
// failure and use the recovered connection.
// If the failure cannot be recovered, an exception is thrown
if (failureHandler.canHandleFailure(sqlEx)) {
// Recover from connection failure
this.conn = failureHandler.recover();
// Configure the new connection before using it
configureConnection();
--retryCount;
doRetry = (retryCount >= 0);
} else {
// Cannot recover using configured handler, re-throw
throw new IOException("Registered handler cannot recover error "
+ "with SQL State: " + sqlEx.getSQLState() + ", error code: "
+ sqlEx.getErrorCode(), sqlEx);
}
}
} while (doRetry);
// Throw an exception if all retry attempts are consumed
if (retryCount < 0) {
throw new IOException("Failed to write to database after "
+ RETRY_MAX + " retries.");
}
}
示例9: rollback
import java.sql.SQLException; //导入方法依赖的package包/类
/**
* @see Connection#rollback(Savepoint)
*/
public void rollback(final Savepoint savepoint) throws SQLException {
synchronized (getConnectionMutex()) {
if (versionMeetsMinimum(4, 0, 14) || versionMeetsMinimum(4, 1, 1)) {
checkClosed();
try {
if (this.connectionLifecycleInterceptors != null) {
IterateBlock<Extension> iter = new IterateBlock<Extension>(this.connectionLifecycleInterceptors.iterator()) {
@Override
void forEach(Extension each) throws SQLException {
if (!((ConnectionLifecycleInterceptor) each).rollback(savepoint)) {
this.stopIterating = true;
}
}
};
iter.doForAll();
if (!iter.fullIteration()) {
return;
}
}
StringBuilder rollbackQuery = new StringBuilder("ROLLBACK TO SAVEPOINT ");
rollbackQuery.append('`');
rollbackQuery.append(savepoint.getSavepointName());
rollbackQuery.append('`');
java.sql.Statement stmt = null;
try {
stmt = getMetadataSafeStatement();
stmt.executeUpdate(rollbackQuery.toString());
} catch (SQLException sqlEx) {
int errno = sqlEx.getErrorCode();
if (errno == 1181) {
String msg = sqlEx.getMessage();
if (msg != null) {
int indexOfError153 = msg.indexOf("153");
if (indexOfError153 != -1) {
throw SQLError.createSQLException("Savepoint '" + savepoint.getSavepointName() + "' does not exist",
SQLError.SQL_STATE_ILLEGAL_ARGUMENT, errno, getExceptionInterceptor());
}
}
}
// We ignore non-transactional tables if told to do so
if (getIgnoreNonTxTables() && (sqlEx.getErrorCode() != SQLError.ER_WARNING_NOT_COMPLETE_ROLLBACK)) {
throw sqlEx;
}
if (SQLError.SQL_STATE_COMMUNICATION_LINK_FAILURE.equals(sqlEx.getSQLState())) {
throw SQLError.createSQLException("Communications link failure during rollback(). Transaction resolution unknown.",
SQLError.SQL_STATE_TRANSACTION_RESOLUTION_UNKNOWN, getExceptionInterceptor());
}
throw sqlEx;
} finally {
closeStatement(stmt);
}
} finally {
this.needsPing = this.getReconnectAtTxEnd();
}
} else {
throw SQLError.createSQLFeatureNotSupportedException();
}
}
}
示例10: execute
import java.sql.SQLException; //导入方法依赖的package包/类
/**
* Adjust this method for large strings...ie multi megabtypes.
*/
void execute() {
String sCmd = null;
if (4096 <= ifHuge.length()) {
sCmd = ifHuge;
} else {
sCmd = txtCommand.getText();
}
if (sCmd.startsWith("-->>>TEST<<<--")) {
testPerformance();
return;
}
String[] g = new String[1];
lTime = System.currentTimeMillis();
try {
if (sStatement == null) {
return;
}
sStatement.execute(sCmd);
lTime = System.currentTimeMillis() - lTime;
int r = sStatement.getUpdateCount();
if (r == -1) {
formatResultSet(sStatement.getResultSet());
} else {
g[0] = "update count";
gResult.setHead(g);
g[0] = String.valueOf(r);
gResult.addRow(g);
}
addToRecent(txtCommand.getText());
} catch (SQLException e) {
lTime = System.currentTimeMillis() - lTime;
g[0] = "SQL Error";
gResult.setHead(g);
String s = e.getMessage();
s += " / Error Code: " + e.getErrorCode();
s += " / State: " + e.getSQLState();
g[0] = s;
gResult.addRow(g);
}
updateResult();
System.gc();
}
示例11: compareResults
import java.sql.SQLException; //导入方法依赖的package包/类
private void compareResults(String sql, Object[][] rows,
int errorCode) throws SQLException {
ResultSet rs = null;
try {
rs = stmt.executeQuery(sql);
assertTrue("Statement <" + sql + "> \nexpecting error code: "
+ errorCode, (0 == errorCode));
} catch (SQLException sqlx) {
if (sqlx.getErrorCode() != errorCode) {
sqlx.printStackTrace();
}
assertTrue("Statement <" + sql + "> \nthrows wrong error code: "
+ sqlx.getErrorCode() + " expecting error code: "
+ errorCode, (sqlx.getErrorCode() == errorCode));
return;
}
int rowCount = 0;
int colCount = rows.length > 0 ? rows[0].length
: 0;
while (rs.next()) {
assertTrue("Statement <" + sql + "> \nreturned too many rows.",
(rowCount < rows.length));
Object[] columns = rows[rowCount];
for (int col = 1, i = 0; i < colCount; i++, col++) {
Object result = null;
Object expected = columns[i];
if (expected == null) {
result = rs.getString(col);
result = rs.wasNull() ? null
: result;
} else if (expected instanceof String) {
result = rs.getString(col);
} else if (expected instanceof Double) {
result = new Double(rs.getString(col));
} else if (expected instanceof Integer) {
result = new Integer(rs.getInt(col));
}
assertEquals("Statement <" + sql
+ "> \nreturned wrong value.", columns[i],
result);
}
rowCount++;
}
assertEquals("Statement <" + sql
+ "> \nreturned wrong number of rows.", rows.length,
rowCount);
}
示例12: executeSQL
import java.sql.SQLException; //导入方法依赖的package包/类
private void executeSQL() {
String[] g = new String[1];
String sql = null;
try {
lTime = System.currentTimeMillis();
sql = ((sqlScriptBuffer == null ? txtCommand.getText()
: sqlScriptBuffer));
sStatement.execute(sql);
int r = sStatement.getUpdateCount();
if (r == -1) {
formatResultSet(sStatement.getResultSet());
} else {
g[0] = "update count";
gResult.setHead(g);
g[0] = "" + r;
gResult.addRow(g);
}
lTime = System.currentTimeMillis() - lTime;
if (sqlScriptBuffer == null) {
addToRecent(sql);
txtCommand.setEnabled(true); // clear() does this otherwise
} else {
clear();
}
} catch (SQLException e) {
lTime = System.currentTimeMillis() - lTime;
g[0] = "SQL Error";
gResult.setHead(g);
String s = e.getMessage();
s += " / Error Code: " + e.getErrorCode();
s += " / State: " + e.getSQLState();
g[0] = s;
gResult.addRow(g);
// Added: ([email protected])
CommonSwing.errorMessage(e);
return;
}
if (autoRefresh) {
// We're already running in a "busy" thread. Just update the
// status text.
setStatusLine("Refreshing object tree", 0);
String upper = sql.toUpperCase(Locale.ENGLISH);
// This test can be very liberal. Too liberal will just do
// some extra refreshes. Too conservative will display
// obsolete info.
if (upper.indexOf("ALTER") > -1 || upper.indexOf("DROP") > -1
|| upper.indexOf("CREATE") > -1) {
directRefreshTree();
}
}
}
示例13: DBConnectionException
import java.sql.SQLException; //导入方法依赖的package包/类
public DBConnectionException(String uri, SQLException e) {
super("Connection URI:" + uri + "; " + e.getMessage(), e.getSQLState(), e.getErrorCode(), e.getCause());
}
示例14: RuntimeSqlException
import java.sql.SQLException; //导入方法依赖的package包/类
/**
* Creates an SQL runtime exception based on an underlying exception and an error message to provide context.
*
* @param message Message that describes the processing at the time of the exception.
* @param e Underlying exception.
*/
public RuntimeSqlException(String message, SQLException e) {
super(message + ": Error code [" + e.getErrorCode() + "] SQL state [" + e.getSQLState() + "]", e);
}