Example usage for org.springframework.jdbc.support JdbcAccessor subclass-usage

List of usage examples for org.springframework.jdbc.support JdbcAccessor subclass-usage

Introduction

In this page you can find the example usage for org.springframework.jdbc.support JdbcAccessor subclass-usage.

Usage

From source file com.glaf.jbpm.db.mybatis2.SqlMapClientTemplate.java

/**
 * Helper class that simplifies data access via the iBATIS
 * {@link com.ibatis.sqlmap.client.SqlMapClient} API, converting checked
 * SQLExceptions into unchecked DataAccessExceptions, following the
 * <code>org.springframework.dao</code> exception hierarchy. Uses the same
 * {@link org.springframework.jdbc.support.SQLExceptionTranslator} mechanism as

From source file com.glaf.core.db.mybatis2.SqlMapClientTemplate.java

/**
 * Helper class that simplifies data access via the iBATIS
 * {@link com.ibatis.sqlmap.client.SqlMapClient} API, converting checked
 * SQLExceptions into unchecked DataAccessExceptions, following the
 * {@code org.springframework.dao} exception hierarchy. Uses the same
 * {@link org.springframework.jdbc.support.SQLExceptionTranslator} mechanism as

From source file org.sakaiproject.orm.ibatis.SqlMapClientTemplate.java

/**
 * Helper class that simplifies data access via the SqlMapClient API of iBATIS
 * SQL Maps, and converts checked SQLExceptions into unchecked DataAccessExceptions,
 * following the <code>org.springframework.dao</code> exception hierarchy.
 * Uses the same SQLExceptionTranslator mechanism as JdbcTemplate.
 *

From source file com.haiegoo.framework.ibatis.SqlMapClientMasterSlaveTemplate.java

/**
 * Helper class that simplifies data access via the iBATIS
 * {@link com.ibatis.sqlmap.client.SqlMapClient} API, converting checked
 * SQLExceptions into unchecked DataAccessExceptions, following the
 * <code>org.springframework.dao</code> exception hierarchy.
 * Uses the same {@link org.springframework.jdbc.support.SQLExceptionTranslator}

From source file org.springframework.jdbc.core.JdbcTemplate.java

/**
 * <b>This is the central class in the JDBC core package.</b>
 * It simplifies the use of JDBC and helps to avoid common errors.
 * It executes core JDBC workflow, leaving application code to provide SQL
 * and extract results. This class executes SQL queries or updates, initiating
 * iteration over ResultSets and catching JDBC exceptions and translating

From source file lib.JdbcTemplate.java

/**
 * <b>This is the central class in the JDBC core package.</b>
 * It simplifies the use of JDBC and helps to avoid common errors.
 * It executes core JDBC workflow, leaving application code to provide SQL
 * and extract results. This class executes SQL queries or updates, initiating
 * iteration over ResultSets and catching JDBC exceptions and translating

From source file cc.tooyoung.common.db.JdbcTemplate.java

/**
 * <b> To get jdbcTemplate from m-s dbs </b>
 * 
 * <p>We can freely update the get strategy, for we can change read/write datasource if the datasource is crash or cannot connect,
 * we can retry get connection if some connection is stale
 * </p>