Class Sequel::IBMDB::Statement
In: lib/sequel/adapters/ibmdb.rb
Parent: Object

Wraps results returned by queries on IBM_DB.

Methods

Public Class methods

Hold the given statement.

[Source]

     # File lib/sequel/adapters/ibmdb.rb, line 125
125:       def initialize(stmt)
126:         @stmt = stmt
127:       end

Public Instance methods

Return the number of rows affected.

[Source]

     # File lib/sequel/adapters/ibmdb.rb, line 130
130:       def affected
131:         IBM_DB.num_rows(@stmt)
132:       end

If this statement is a prepared statement, execute it on the database with the given values.

[Source]

     # File lib/sequel/adapters/ibmdb.rb, line 136
136:       def execute(*values)
137:         IBM_DB.execute(@stmt, values)
138:       end

Return the results of a query as an array of values.

[Source]

     # File lib/sequel/adapters/ibmdb.rb, line 141
141:       def fetch_array
142:         IBM_DB.fetch_array(@stmt) if @stmt
143:       end

Return the field name at the given column in the result set.

[Source]

     # File lib/sequel/adapters/ibmdb.rb, line 146
146:       def field_name(ind)
147:         IBM_DB.field_name(@stmt, ind)
148:       end

Return the field precision for the given field name in the result set.

[Source]

     # File lib/sequel/adapters/ibmdb.rb, line 156
156:       def field_precision(key)
157:         IBM_DB.field_precision(@stmt, key)
158:       end

Return the field type for the given field name in the result set.

[Source]

     # File lib/sequel/adapters/ibmdb.rb, line 151
151:       def field_type(key)
152:         IBM_DB.field_type(@stmt, key)
153:       end

Free the memory related to this statement.

[Source]

     # File lib/sequel/adapters/ibmdb.rb, line 161
161:       def free
162:         IBM_DB.free_stmt(@stmt)
163:       end

Free the memory related to this result set, only useful for prepared statements which have a different result set on every call.

[Source]

     # File lib/sequel/adapters/ibmdb.rb, line 167
167:       def free_result
168:         IBM_DB.free_result(@stmt)
169:       end

Return the number of fields in the result set.

[Source]

     # File lib/sequel/adapters/ibmdb.rb, line 172
172:       def num_fields
173:         IBM_DB.num_fields(@stmt)
174:       end

[Validate]