Class: VertxSqlClient::SqlResult
- Inherits:
-
Object
- Object
- VertxSqlClient::SqlResult
- Defined in:
- /Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-sql-client/sql_result.rb
Overview
Represents the result of an operation on database.
Direct Known Subclasses
Instance Method Summary (collapse)
-
- (Array<String>) columns_names
Get the names of columns in the SqlResult.
-
- (::VertxSqlClient::SqlResult) next
Return the next available result or null, e.g for a simple query that executed multiple queries or for a batch result.
-
- (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.
-
- (Object) value
Get the result value.
Instance Method Details
- (Array<String>) columns_names
Get the names of columns in the SqlResult.
28 29 30 31 32 33 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-sql-client/sql_result.rb', line 28 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::SqlResult) next
Return the next available result or
null
, e.g for a simple query that executed multiple queries or for
a batch result.
62 63 64 65 66 67 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-sql-client/sql_result.rb', line 62 def next if !block_given? return ::Vertx::Util::Utils.safe_create(@j_del.java_method(:next, []).call(),::VertxSqlClient::SqlResult, nil) end raise ArgumentError, "Invalid arguments when calling next()" end |
- (Object) property(propertyKind = nil)
Get the property with the specified PropertyKind.
45 46 47 48 49 50 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-sql-client/sql_result.rb', line 45 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.
20 21 22 23 24 25 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-sql-client/sql_result.rb', line 20 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.
36 37 38 39 40 41 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-sql-client/sql_result.rb', line 36 def size if !block_given? return @j_del.java_method(:size, []).call() end raise ArgumentError, "Invalid arguments when calling size()" end |
- (Object) value
Get the result value.
53 54 55 56 57 58 |
# File '/Users/julien/java/vertx-aggregator/modules/vertx-lang-ruby/vertx-lang-ruby/target/classes/vertx-sql-client/sql_result.rb', line 53 def value if !block_given? return @j_arg_T.wrap(@j_del.java_method(:value, []).call()) end raise ArgumentError, "Invalid arguments when calling value()" end |