GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Protocol::CassandraCQL::Result(3) User Contributed Perl Documentation Protocol::CassandraCQL::Result(3)

"Protocol::CassandraCQL::Result" - stores the result of a Cassandra CQL query

Objects in this class store the result of a direct query or executed prepared statement, as returned by an "OPCODE_RESULT" giving "RESULT_ROWS". It allows convenient access to the decoded row data.

As a subclass of Protocol::CassandraCQL::ColumnMeta it also provides information about column metadata, such as column names and types.

Returns a new result object initialised from the given "OPCODE_RESULT" / "RESULT_ROWS" message frame and CQL version number. (Version will default to 1 if not supplied, but this may become a required parameter in a future version).

Returns a new result object initialised directly from the given row data. This constructor is intended for use by unit test scripts, to create results directly from mocked connection objects or similar.

In addition to the arguments taken by the superclass constructor, it takes the following named arguments:

rows => ARRAY[ARRAY]
An ARRAY reference containing ARRAY references of the individual rows' data.

If the result was constructed from a message frame with the "ROWS_NO_METADATA" flag set, it would not have embedded metadata allowing the object to correctly decode the encoded byte strings. This method allows the caller to provide the metadata as previously returned by the "OPCODE_PREPARE" operation that prepared the query initially, enabling its decoding.

If the result object lacks this metadata, then before this method is called only the "rows" and "columns" methods may be used to return the general shape of the data; any of the row data methods will throw exceptions until the metadata is set.

Returns the number of rows

Returns the row's data decoded, as an ARRAY reference

Returns the row's data decoded, as a HASH reference mapping column short names to values.

Returns a list of all the rows' data decoded as ARRAY references.

Returns a list of all the rows' data decoded as HASH references.

Returns a HASH reference mapping keys to rows deccoded as ARRAY references. $keyidx gives the column index of the value to use as the key in the returned map.

Returns a HASH reference mapping keys to rows decoded as HASH references. $keyname gives the column shortname of the value to use as the key in the returned map.

This code was paid for by
  • Perceptyx <http://www.perceptyx.com/>
  • Shadowcat Systems <http://www.shadow.cat>

Paul Evans <leonerd@leonerd.org.uk>
2022-04-08 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.