- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for SQLRuntimeException (0.4 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/core/exception/SQLRuntimeException.java
* * @author higa * @author manhole */ public class SQLRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 2533513110369526191L; /** * Creates a {@link SQLRuntimeException}. * * @param cause the underlying exception */ public SQLRuntimeException(final SQLException cause) {Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 2.5K bytes - Click Count (0) -
src/main/java/org/codelibs/core/sql/ResultSetUtil.java
* @return Whether the cursor successfully moved to the specified position. * @throws SQLRuntimeException * If an SQL exception occurs. */ public static boolean absolute(final ResultSet resultSet, final int index) throws SQLRuntimeException { assertArgumentNotNull("resultSet", resultSet); try { return resultSet.absolute(index);Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 2.9K bytes - Click Count (0) -
src/test/java/org/codelibs/core/exception/SQLRuntimeExceptionTest.java
sqlException.setNextException(sqlException2); sqlException2.setNextException(sqlException3); final SQLRuntimeException sqlRuntimeException = new SQLRuntimeException(sqlException); // ## Act ## final String message = sqlRuntimeException.getMessage(); // ## Assert ## System.out.println(message); assertContains(message, "ErrorCode=7650");
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 3.2K bytes - Click Count (0) -
src/main/java/org/codelibs/core/sql/DriverManagerUtil.java
import java.sql.Driver; import java.sql.DriverManager; import java.sql.SQLException; import java.util.Enumeration; import org.codelibs.core.exception.SQLRuntimeException; import org.codelibs.core.lang.ClassUtil; /** * Utility class for {@link java.sql.DriverManager}. * * @author koichik */ public abstract class DriverManagerUtil { /**Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 3.2K bytes - Click Count (0)