Class PreparedStatement.

Inherits Garbage

This class represents an SQL prepared statement.

A PreparedStatement has a name() and an associated query(). Its only purpose is to be used to construct Query objects. Each object has a unique name.

A PreparedStatement is never freed during garbage collection.

PreparedStatement::PreparedStatement( const EString & s )

Creates a PreparedStatement containing the SQL statement s, and generates a unique SQL name for it.

EString PreparedStatement::name() const

Returns the name of this PreparedStatement.

EString PreparedStatement::query() const

Returns the text of this PreparedStatement.

This web page based on source code belonging to The Archiveopteryx Developers. All rights reserved.