Package com.bleujin.framework.db.rowset

Examples of com.bleujin.framework.db.rowset.WebRowSet.execute()


        // webRs.setCommand("select * from clob1") ;
        webRs.setCommand( "select * from emp where deptno = ?" );
        webRs.setInt( 1, 10 );

        getConnection();
        webRs.execute( conn );
        freeConnection( conn );

        // Writer writer = new FileWriter(new File("emp.xml")) ;
        Writer writer = new StringWriter();
        webRs.writeXml( writer );
View Full Code Here


        webRs.setCommand( "insert into AA values(?, ?)" );
        webRs.setInt( 1, 10 );
        webRs.setString( 2, "AAA" );

        getConnection();
        webRs.execute( conn );
        freeConnection( conn );

        System.out.println( webRs );
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.