Package org.fto.jthink.jdbc

Examples of org.fto.jthink.jdbc.SQLExecutor.executeQuery()


   
    try{
      /* 开始事务 */
      transaction.begin();
      /* 直接执行SQL查询语句 */
      return (List)sqlExecutor.executeQuery("select * from messages");
     
    }finally{
      /* 关闭事务 */
      transaction.close();
    }
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.