Examples of MSSQLDBManager


Examples of com.bleujin.framework.db.manager.MSSQLDBManager

   */

  public void testSimple() throws Exception {
   
    // prepare
    MSSQLDBManager mManager = new MSSQLDBManager("jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=test", "bleu", "redf");
    DBController mdc = new DBController(mManager) ;
    mdc.initSelf() ;

    OracleDBManager oManager = new OracleDBManager("jdbc:oracle:thin:@novision:1521:al", "al", "redf") ;
    DBController odc = new DBController(oManager) ;
View Full Code Here

Examples of com.bleujin.framework.db.manager.MSSQLDBManager

    // Distributed transaction enabled data-sources

    // Only For Test
    MSSQL2000TxTransaction() {
        this(new MSSQLDBManager("jdbc:microsoft:sqlserver://novision:1433;DatabaseName=pubs", "pubs", "pubs"), "test");
    };
View Full Code Here

Examples of com.bleujin.framework.db.manager.MSSQLDBManager

public class TestJSON extends TestCase{

  private DBController dc ;
  public void setUp() throws Exception {
    DBManager dbm = new MSSQLDBManager("jdbc:sqlserver://localhost;databasename=test", "bleu", "redf") ;
    dc = new DBController(dbm) ;
    dc.initSelf() ;
  }
View Full Code Here

Examples of com.bleujin.framework.db.manager.MSSQLDBManager

    st.close() ;
    conn.close();
  }

  public void setUp() throws Exception{
    MSSQLDBManager dbm = new MSSQLDBManager("jdbc:sqlserver://localhost;databasename=test", "bleu", "redf");
    dc = new DBController(dbm) ;
    dc.initSelf() ;
  }
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.