This class defines a wrapper for accessing a specific column in ResultSetMetaData
.
This allows iteration over columns using idiomatic Groovy, e.g.:
meta.each {col -> println col.columnName }All
ResultSetMetaData
column methods taking a column index
are available on a column either as a no-arg getter or via a property.
This wrapper is created by an iterator invoked for ResultSetMetaData
.
Constructor and description |
---|
ResultSetMetaDataWrapper
(ResultSetMetaData target, int index) |
Type | Name and description |
---|---|
Object |
getProperty(String property) |
Object |
invokeMethod(String name, Object args) |
void |
setProperty(String property, Object newValue) |
Methods inherited from class | Name |
---|---|
class GroovyObjectSupport |
getMetaClass, getProperty, invokeMethod, setMetaClass, setProperty |
class Object |
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Copyright © 2003-2014 The Codehaus. All rights reserved.