Package com.mockobjects.sql

Examples of com.mockobjects.sql.MockSingleRowResultSet


  /* (non-Javadoc)
   * @see com.mockobjects.sql.MockDatabaseMetaData#getTableTypes()
   */
  public ResultSet getTableTypes() throws SQLException
  {
    MockSingleRowResultSet rs = new MockSingleRowResultSet();
    rs.addExpectedIndexedValues(new Object[] { "TABLE" });
    return rs;
  }
View Full Code Here

TOP

Related Classes of com.mockobjects.sql.MockSingleRowResultSet

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.