Mercurial > hg > monetdb-java
view src/main/java/nl/cwi/monetdb/embedded/mapping/AbstractResultTable.java @ 51:c592d8a72627 embedded
More defensive approach for tables. Only the table name and schema are cached.
author | Pedro Ferreira <pedro.ferreira@monetdbsolutions.com> |
---|---|
date | Wed, 16 Nov 2016 21:21:26 +0100 (2016-11-16) |
parents | dfea8468cd1a |
children | 6617eaf808cb |
line wrap: on
line source
package nl.cwi.monetdb.embedded.mapping; import nl.cwi.monetdb.embedded.env.AbstractConnectionResult; import nl.cwi.monetdb.embedded.env.MonetDBEmbeddedConnection; /** * Base class for statement results with data * * @author <a href="mailto:pedro.ferreira@monetdbsolutions.com">Pedro Ferreira</a> */ public abstract class AbstractResultTable extends AbstractConnectionResult { public AbstractResultTable(MonetDBEmbeddedConnection connection) { super(connection); } /** * Returns the number of columns in the result set. * * @return Number of columns */ public abstract int getNumberOfColumns(); /** * Returns the number of rows in the result set. * * @return Number of rows */ public abstract int getNumberOfRows(); /** * Gets the columns names as a string array. * * @return The columns names array */ public abstract String[] getColumnNames(); /** * Gets the columns types as a string array. * * @return The columns types array */ public abstract String[] getColumnTypes(); /** * Gets the Java mappings as a MonetDBToJavaMapping array. * * @return The columns MonetDBToJavaMapping array */ public abstract MonetDBToJavaMapping[] getMappings(); /** * Gets the columns digits as an integer array. * * @return The columns digits array */ public abstract int[] getColumnDigits(); /** * Gets the columns scales as an integer array. * * @return The columns scales array */ public abstract int[] getColumnScales(); }