当前位置: 首页>>代码示例>>Java>>正文


Java PreparedStatement.toString方法代码示例

本文整理汇总了Java中java.sql.PreparedStatement.toString方法的典型用法代码示例。如果您正苦于以下问题:Java PreparedStatement.toString方法的具体用法?Java PreparedStatement.toString怎么用?Java PreparedStatement.toString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在java.sql.PreparedStatement的用法示例。


在下文中一共展示了PreparedStatement.toString方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createPreparedStatement

import java.sql.PreparedStatement; //导入方法依赖的package包/类
@Override
public PreparedStatement createPreparedStatement(Connection con) throws SQLException {
    PreparedStatement ps = con.prepareStatement(this.sql, autoGeneratedKey);

    if (null != args){
        SQLTools.fillStatement(ps, args);
        if (isBatch  && (rowCont = args.length) > 0){
            int success = ps.executeBatch().length ;
            if (success > 0 && success < rowCont){
                logger.warn("The number of successful {}, now successful {} ", rowCont, success );
            }
            rowCont = success;
        }else {
            rowCont = ps.executeUpdate();
        }
        if (rowCont < 1) {
            throw new SQLException("sql:{} On failure.", ps.toString());
        }
    }

    return ps;
}
 
开发者ID:egzosn,项目名称:spring-jdbc-orm,代码行数:23,代码来源:PreparedStatementCreator.java

示例2: testBug42267

import java.sql.PreparedStatement; //导入方法依赖的package包/类
public void testBug42267() throws Exception {
    MysqlDataSource ds = new MysqlDataSource();
    ds.setUrl(dbUrl);
    Connection c = ds.getConnection();
    String query = "select 1,2,345";
    PreparedStatement ps = c.prepareStatement(query);
    String psString = ps.toString();
    assertTrue("String representation of wrapped ps should contain query string", psString.endsWith(": " + query));
    ps.close();
    ps.toString();
    c.close();
}
 
开发者ID:bragex,项目名称:the-vigilantes,代码行数:13,代码来源:DataSourceRegressionTest.java

示例3: doInPreparedStatement

import java.sql.PreparedStatement; //导入方法依赖的package包/类
/**
 * Gets called by {@code JdbcTemplate.execute} with an active JDBC
 * PreparedStatement. Does not need to care about closing the Statement
 * or the Connection, or about handling transactions: this will all be
 * handled by Spring's JdbcTemplate.
 * <p><b>NOTE:</b> Any ResultSets opened should be closed in finally blocks
 * within the callback implementation. Spring will close the Statement
 * object after the callback returned, but this does not necessarily imply
 * that the ResultSet resources will be closed: the Statement objects might
 * get pooled by the connection pool, with {@code close} calls only
 * returning the object to the pool but not physically closing the resources.
 * <p>If called without a thread-bound JDBC transaction (initiated by
 * DataSourceTransactionManager), the code will simply get executed on the
 * JDBC connection with its transactional semantics. If JdbcTemplate is
 * configured to use a JTA-aware DataSource, the JDBC connection and thus
 * the callback code will be transactional if a JTA transaction is active.
 * <p>Allows for returning a result object created within the callback, i.e.
 * a domain object or a collection of domain objects. Note that there's
 * special support for single step actions: see JdbcTemplate.queryForObject etc.
 * A thrown RuntimeException is treated as application exception, it gets
 * propagated to the caller of the template.
 *
 * @param ps active JDBC PreparedStatement
 *
 * @return a result object, or {@code null} if none
 * @throws SQLException        if thrown by a JDBC method, to be auto-converted
 *                             to a DataAccessException by a SQLExceptionTranslator
 * @throws DataAccessException in case of custom exceptions
 * @see JdbcTemplate#queryForObject(String, Object[], Class)
 * @see JdbcTemplate#queryForList(String, Object[])
 */
@Override
public T doInPreparedStatement(PreparedStatement ps) throws SQLException, DataAccessException {

    SQLTools.fillStatement(ps, args);
    if (isBatch   && (rowCont = args.length) > 0){
        int success = ps.executeBatch().length ;
        if (success > 0 && success < rowCont){
            logger.warn("The number of successful {}, now successful {} ", rowCont, success );
        }
        rowCont = success;
    }else {
        rowCont = ps.executeUpdate();
    }

    if (rowCont < 1) {
        throw new SQLException("sql:{} On failure.", ps.toString());
    }

    if (this.isInsert){
        if (entityPersister.getIdField().autoGeneratedKeys()){
            id = generated(ps);
        }
        return id;
    }

    return (T) (Object)rowCont;


}
 
开发者ID:egzosn,项目名称:spring-jdbc-orm,代码行数:61,代码来源:EntityPreparedStatementCallback.java


注:本文中的java.sql.PreparedStatement.toString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。