libpqxx 4.0
pqxx::internal::sql_cursor Class Reference

Cursor with SQL positioning semantics. More...

#include <cursor.hxx>

Inheritance diagram for pqxx::internal::sql_cursor:

List of all members.

Public Member Functions

 sql_cursor (transaction_base &t, const std::string &query, const std::string &cname, cursor_base::accesspolicy ap, cursor_base::updatepolicy up, cursor_base::ownershippolicy op, bool hold)
 sql_cursor (transaction_base &t, const std::string &cname, cursor_base::ownershippolicy op)
 ~sql_cursor () throw ()
result fetch (difference_type rows, difference_type &displacement)
result fetch (difference_type rows)
difference_type move (difference_type rows, difference_type &displacement)
difference_type move (difference_type rows)
difference_type pos () const throw ()
 Current position, or -1 for unknown.
difference_type endpos () const throw ()
 End position, or -1 for unknown.
const resultempty_result () const throw ()
 Return zero-row result for this cursor.
void close () throw ()

Detailed Description

Cursor with SQL positioning semantics.

Thin wrapper around an SQL cursor, with SQL's ideas of positioning.

SQL cursors have pre-increment/pre-decrement semantics, with on either end of the result set a special position that does not repesent a row. This class models SQL cursors for the purpose of implementing more C++-like semantics on top.

Positions of actual rows are numbered starting at 1. Position 0 exists but does not refer to a row. There is a similar non-row position at the end of the result set.

Don't use this at home. You deserve better. Use the stateles_cursor instead.


Constructor & Destructor Documentation

pqxx::internal::sql_cursor::sql_cursor ( transaction_base t,
const std::string &  cname,
cursor_base::ownershippolicy  op 
)
pqxx::internal::sql_cursor::~sql_cursor ( ) throw ()

Member Function Documentation

void pqxx::internal::sql_cursor::close ( ) throw ()
const result& pqxx::internal::sql_cursor::empty_result ( ) const throw ()

Return zero-row result for this cursor.

Referenced by pqxx::internal::stateless_cursor_retrieve().

difference_type pqxx::internal::sql_cursor::endpos ( ) const throw ()

End position, or -1 for unknown.

Returns the final position, just after the last row in the result set. The starting position, just before the first row, counts as position zero.

End position is unknown until it is encountered during use.

Referenced by pqxx::internal::obtain_stateless_cursor_size().

result pqxx::internal::sql_cursor::fetch ( difference_type  rows)

References fetch().

Referenced by fetch().

result pqxx::internal::sql_cursor::fetch ( difference_type  rows,
difference_type displacement 
)
difference_type pqxx::internal::sql_cursor::move ( difference_type  rows)

References move().

Referenced by move().

difference_type pqxx::internal::sql_cursor::pos ( ) const throw ()

Current position, or -1 for unknown.

The starting position, just before the first row, counts as position zero.

Position may be unknown if (and only if) this cursor was adopted, and has never hit its starting position (position zero).

Referenced by pqxx::internal::stateless_cursor_retrieve().


The documentation for this class was generated from the following files: