org.apache.cassandra.cql.jdbc
Interface ColumnMetaData


public interface ColumnMetaData

This interface lets AbstractTypes derived outside of the cassandra project answer JDBC questions relating to type. Only bother implmenting this on your AbstractTypes if you're going to use JDBC and ResultSetMetaData.


Method Summary
 int getPrecision()
           
 int getScale()
           
 int getType()
           
 boolean isCaseSensitive()
           
 boolean isCurrency()
           
 boolean isSigned()
           
 boolean needsQuotes()
           
 

Method Detail

isSigned

boolean isSigned()

isCaseSensitive

boolean isCaseSensitive()

isCurrency

boolean isCurrency()

getPrecision

int getPrecision()

getScale

int getScale()

getType

int getType()

needsQuotes

boolean needsQuotes()


Copyright © 2011 The Apache Software Foundation