Package org.pentaho.commons.connection.marshal

Examples of org.pentaho.commons.connection.marshal.MarshallableColumnTypes


    assertNotNull( cols );
    assertEquals( 2, cols.length );
    assertEquals( "col1", cols[0] );
    assertEquals( "col2", cols[1] );

    MarshallableColumnTypes colTypes = result.getColumnTypes();
    assertNotNull( colTypes );
    String[] types = colTypes.getColumnType();
    assertNotNull( types );
    assertEquals( 2, types.length );
    assertEquals( "string", types[0] );
    assertEquals( "integer", types[1] );
View Full Code Here

TOP

Related Classes of org.pentaho.commons.connection.marshal.MarshallableColumnTypes

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.