Examples of Migrator


Examples of src.Migrator

import junit.framework.TestCase;

public class CursoMigrationTest extends TestCase {

  public void testGetResultSet() throws Exception {
    Migrator migration = new CursoMigration(Context.getSourceConnection(),
        Context.getDestinationConnection());
    ResultSet rs = migration.getResultSet();

    rs.next();
    assertEquals(9, rs.getMetaData().getColumnCount());
  }
View Full Code Here

Examples of src.Migrator

    rs.next();
    assertEquals(9, rs.getMetaData().getColumnCount());
  }

  public void testExecute() throws Exception {
    Migrator migration = new CursoMigration(Context.getSourceConnection(),
        Context.getDestinationConnection());
    ResultSet rs = migration.getResultSet();
    rs.next();

    migration.execute(rs);

    Statement stm = (Statement) Context.getDestinationConnection()
        .createStatement();
    ResultSet rs2 = (ResultSet) stm
        .executeQuery("SELECT id FROM CURSO WHERE id = "
View Full Code Here

Examples of src.Migrator

import src.TelecentroMigration;

public class TelecentroMigrationTest extends TestCase {

  public void testGetResultSet() throws Exception {
    Migrator migration = new TelecentroMigration(Context.getSourceConnection(),Context.getDestinationConnection());
    ResultSet rs = migration.getResultSet();
   
    rs.next();
    assertEquals(28,rs.getMetaData().getColumnCount());
  }
View Full Code Here

Examples of src.Migrator

    rs.next();
    assertEquals(28,rs.getMetaData().getColumnCount());
  }
 
  public void testExecute() throws Exception {
    Migrator migration = new TelecentroMigration(Context.getSourceConnection(),Context.getDestinationConnection());
    ResultSet rs = migration.getResultSet();
    rs.next();
   
    migration.execute(rs);
   
    Statement stm = (Statement) Context.getDestinationConnection().createStatement();
    ResultSet rs2 = (ResultSet) stm.executeQuery("SELECT id, nome FROM TELECENTRO WHERE id = " + rs.getLong(1));
    rs2.next();
   
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.