Class: VertxSqlClient::RowSet
- Inherits:
-
SqlResult
- Object
- SqlResult
- VertxSqlClient::RowSet
- Defined in:
- /Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-sql-client/row_set.rb
Overview
A set of rows.
Instance Method Summary (collapse)
-
- (Array<String>) columns_names
Get the names of columns in the SqlResult.
- - (::VertxSqlClient::RowIterator) iterator
- - (::VertxSqlClient::RowSet) next
-
- (Object) property(propertyKind = nil)
Get the property with the specified PropertyKind.
-
- (Fixnum) row_count
Get the number of the affected rows in the operation to this SqlResult.
-
- (Fixnum) size
Get the number of rows retrieved in the SqlResult.
-
- (::VertxSqlClient::RowSet) value
Get the result value.
Instance Method Details
- (Array<String>) columns_names
Get the names of columns in the SqlResult.
30 31 32 33 34 35 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-sql-client/row_set.rb', line 30 def columns_names if !block_given? return @j_del.java_method(:columnsNames, []).call().to_a.map { |elt| elt } end raise ArgumentError, "Invalid arguments when calling columns_names()" end |
- (::VertxSqlClient::RowIterator) iterator
62 63 64 65 66 67 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-sql-client/row_set.rb', line 62 def iterator if !block_given? return ::Vertx::Util::Utils.safe_create(@j_del.java_method(:iterator, []).call(),::VertxSqlClient::RowIterator, nil) end raise ArgumentError, "Invalid arguments when calling iterator()" end |
- (::VertxSqlClient::RowSet) next
69 70 71 72 73 74 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-sql-client/row_set.rb', line 69 def next if !block_given? return ::Vertx::Util::Utils.safe_create(@j_del.java_method(:next, []).call(),::VertxSqlClient::RowSet, nil) end raise ArgumentError, "Invalid arguments when calling next()" end |
- (Object) property(propertyKind = nil)
Get the property with the specified PropertyKind.
47 48 49 50 51 52 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-sql-client/row_set.rb', line 47 def property(propertyKind=nil) if propertyKind.class.method_defined?(:j_del) && !block_given? return ::Vertx::Util::Utils.from_object(@j_del.java_method(:property, [Java::IoVertxSqlclient::PropertyKind.java_class]).call(propertyKind.j_del)) end raise ArgumentError, "Invalid arguments when calling property(#{propertyKind})" end |
- (Fixnum) row_count
Get the number of the affected rows in the operation to this SqlResult.
22 23 24 25 26 27 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-sql-client/row_set.rb', line 22 def row_count if !block_given? return @j_del.java_method(:rowCount, []).call() end raise ArgumentError, "Invalid arguments when calling row_count()" end |
- (Fixnum) size
Get the number of rows retrieved in the SqlResult.
38 39 40 41 42 43 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-sql-client/row_set.rb', line 38 def size if !block_given? return @j_del.java_method(:size, []).call() end raise ArgumentError, "Invalid arguments when calling size()" end |
- (::VertxSqlClient::RowSet) value
Get the result value.
55 56 57 58 59 60 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-sql-client/row_set.rb', line 55 def value if !block_given? return ::Vertx::Util::Utils.safe_create(@j_del.java_method(:value, []).call(),::VertxSqlClient::RowSet, nil) end raise ArgumentError, "Invalid arguments when calling value()" end |