Package com.bleujin.framework.db.procedure

Examples of com.bleujin.framework.db.procedure.IUserProcedure.addBlob()


    public void xtestClobProcedure() throws Exception {
        IUserProcedure upt = dc.createUserProcedure("bleujin@lobTest2(?,?,?,?)") ;
        upt.addParam(0, 1); ;
        upt.addParam(1, "������"); ;
        upt.addClob(2, getLongString()); ;
        upt.addBlob(3, new FileInputStream("c:/temp/article.csv"));

        upt.execUpdate() ;
    }

    public void xtestClobInsertBatch() throws Exception {
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.