Class: OracleDB::StmtInfo
- Inherits:
-
Object
- Object
- OracleDB::StmtInfo
- Defined in:
- lib/oracledb/info_types.rb,
ext/oracledb/rboradb_info_types.c
Instance Method Summary collapse
- #is_ddl ⇒ Object
- #is_dml ⇒ Object
- #is_plsql ⇒ Object
- #is_query ⇒ Object
- #is_returning ⇒ Object
- #statement_type ⇒ Object
- #to_s ⇒ Object
Instance Method Details
#is_ddl ⇒ Object
209 210 211 |
# File 'lib/oracledb/info_types.rb', line 209 def is_ddl @is_ddl end |
#is_dml ⇒ Object
213 214 215 |
# File 'lib/oracledb/info_types.rb', line 213 def is_dml @is_dml end |
#is_plsql ⇒ Object
205 206 207 |
# File 'lib/oracledb/info_types.rb', line 205 def is_plsql @is_plsql end |
#is_query ⇒ Object
201 202 203 |
# File 'lib/oracledb/info_types.rb', line 201 def is_query @is_query end |
#is_returning ⇒ Object
221 222 223 |
# File 'lib/oracledb/info_types.rb', line 221 def is_returning @is_returning end |
#statement_type ⇒ Object
217 218 219 |
# File 'lib/oracledb/info_types.rb', line 217 def statement_type @statement_type end |
#to_s ⇒ Object
225 226 227 |
# File 'lib/oracledb/info_types.rb', line 225 def to_s @statement_type.to_s end |