Package com.alibaba.druid.mock

Examples of com.alibaba.druid.mock.MockRowId


           
            stmt.setBinaryStream(1, new ByteInputStream(new byte[0]));
            stmt.setString(2, buf.toString());
            stmt.setTime(3, new Time(currentMillis));
            stmt.setBigDecimal(4, new BigDecimal("56789.123"));
            stmt.setRowId(5, new MockRowId());
           
            ResultSet rs = stmt.executeQuery();
            rs.close();
           
            stmt.close();
View Full Code Here


        pstmt.setNClob(15, conn.createNClob());
        pstmt.setNString(16, null);
        pstmt.setNull(17, Types.VARCHAR);
        pstmt.setObject(18, null);
        pstmt.setRef(19, new MockRef());
        pstmt.setRowId(20, new MockRowId());
        pstmt.setShort(21, (short) 1);
        pstmt.setSQLXML(22, conn.createSQLXML());
        pstmt.setString(23, "");
        pstmt.setTime(24, null);
        pstmt.setTimestamp(25, null);
View Full Code Here

TOP

Related Classes of com.alibaba.druid.mock.MockRowId

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.