Package com.uic.ase.proj.xbn.db

Examples of com.uic.ase.proj.xbn.db.DBCSPrepared


  public int update(DBCSPrepared dbcs_prepared) throws SQLException  {
    return update(null, dbcs_prepared);
  }

  public boolean execute(DBConnDirect db_connDirect, String s_sql, int i_resultSetType, int i_resultSetConcurrency) throws SQLException  {
    return execute(new DBCSPrepared(db_connDirect, s_sql, i_resultSetType, i_resultSetConcurrency));
  }
View Full Code Here


  public boolean execute(DBConnDirect db_connDirect, String s_sql, int i_resultSetType, int i_resultSetConcurrency) throws SQLException  {
    return execute(new DBCSPrepared(db_connDirect, s_sql, i_resultSetType, i_resultSetConcurrency));
  }

  public boolean execute(DBConnDirect db_connDirect, String s_sql) throws SQLException  {
    return execute(new DBCSPrepared(db_connDirect, s_sql));
  }
View Full Code Here

TOP

Related Classes of com.uic.ase.proj.xbn.db.DBCSPrepared

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.