Public Member Functions | Related Functions

Gnome::Gda::DataSelect Class Reference
[Data Models]

Data models returned by the execution of a SELECT statement. More...

Inheritance diagram for Gnome::Gda::DataSelect:
Inheritance graph
[legend]
Collaboration diagram for Gnome::Gda::DataSelect:
Collaboration graph
[legend]

List of all members.

Public Member Functions

virtual ~DataSelect ()
GdaDataSelect* gobj ()
 Provides access to the underlying C GObject.
const GdaDataSelect* gobj () const
 Provides access to the underlying C GObject.
GdaDataSelect* gobj_copy ()
 Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
bool set_row_selection_condition_sql (const Glib::ustring& sql_where)
 Specifies the SQL condition corresponding to the WHERE part of a SELECT statement which would return only 1 row (the expression of the primary key).
void compute_row_selection_condition ()
 Offers the same features as set_row_selection_condition() but the expression is computed from the meta data associated to the connection being used when model was created.
void set_modification_statement (const Glib::RefPtr< Statement >& mod_stmt)
 Informs model that it should allow modifications to the data in some columns and some rows using mod_stmt to propagate those modifications into the database.
void set_modification_statement_sql (const Glib::ustring& sql)
 Offers the same feature as set_modification_statement() but using an SQL statement.
void compute_modification_statements ()
 Makes model try to compute INSERT, UPDATE and DELETE statements to be used when modifying model's contents.
void compute_columns_attributes ()
 Computes correct attributes for each of model's columns, which includes the "NOT <tt>0</tt>" attribute, the default value, the precision and scale for numeric values.
Glib::RefPtr< Connectionget_connection ()
 Get a pointer to the Gda::Connection object which was used when model was created (and which may be used internally by model).
void rerun ()
 Requests that model be re-run to have an updated result.
Glib::PropertyProxy< bool > property_auto_reset ()
 Automatically re-run the SELECT statement if any parameter has chanegd since it was first executed.
Glib::PropertyProxy_ReadOnly
< bool > 
property_auto_reset () const
 Automatically re-run the SELECT statement if any parameter has chanegd since it was first executed.
Glib::PropertyProxy< bool > property_store_all_rows ()
 Tells if model has analyzed all the rows.
Glib::PropertyProxy_ReadOnly
< bool > 
property_store_all_rows () const
 Tells if model has analyzed all the rows.
Glib::PropertyProxy_ReadOnly
< Glib::RefPtr< Connection > > 
property_connection () const
 Connection from which this data model is created.
Glib::PropertyProxy
< Glib::RefPtr< Statement > > 
property_delete_stmt ()
 DELETE Statement to be executed to remove data.
Glib::PropertyProxy_ReadOnly
< Glib::RefPtr< Statement > > 
property_delete_stmt () const
 DELETE Statement to be executed to remove data.
Glib::PropertyProxy
< Glib::RefPtr< Statement > > 
property_insert_stmt ()
 INSERT Statement to be executed to add data.
Glib::PropertyProxy_ReadOnly
< Glib::RefPtr< Statement > > 
property_insert_stmt () const
 INSERT Statement to be executed to add data.
Glib::PropertyProxy
< Glib::RefPtr< Statement > > 
property_prepared_stmt ()
 Associated prepared statement (for internal usage).
Glib::PropertyProxy_ReadOnly
< Glib::RefPtr< Statement > > 
property_prepared_stmt () const
 Associated prepared statement (for internal usage).
Glib::PropertyProxy
< Glib::RefPtr< Statement > > 
property_update_stmt ()
 UPDATE Statement to be executed to update data.
Glib::PropertyProxy_ReadOnly
< Glib::RefPtr< Statement > > 
property_update_stmt () const
 UPDATE Statement to be executed to update data.
Glib::PropertyProxy_ReadOnly
< Glib::RefPtr< Set > > 
property_exec_params () const
 GdaSet used when the SELECT statement was executed.
Glib::PropertyProxy_ReadOnly
< guint > 
property_model_usage () const
 Determines how the data model may be used.

Related Functions

(Note that these are not member functions.)


Glib::RefPtr
< Gnome::Gda::DataSelect
wrap (GdaDataSelect* object, bool take_copy=false)
 A Glib::wrap() method for this object.

Detailed Description

Data models returned by the execution of a SELECT statement.

This data model implements the Gda::DataModel interface and is the required base object when database providers implement a data model returned when a SELECT statement has been executed. As the GdaDataModel interface is implemented, consult the API to access and modify the data held in a GdaDataSelect object.

The default behaviour however is to disallow modifications, and this section documents how to characterize a Gda::DataSelect to allow modifications. Once this is done, any modification done to the data model whill be propagated to the modified table in the database using INSERT, UPDATE or DELETE statements.

After any modification, it is still possible to read values from the data model (even values for rows which have been modified or inserted). The data model might then execute some SELECT statement to fetch some actualized values. Note: there is a corner case where a modification made to a row would make the row not selected at first in the data model (for example is the original SELECT statement included a clause "WHERE id < 100" and the modification sets the "id" value to 110), then the row will still be in the data model even though it would not be if the SELECT statement which execution created the data model in the first place was re-run.


Constructor & Destructor Documentation

virtual Gnome::Gda::DataSelect::~DataSelect (  ) [virtual]

Member Function Documentation

void Gnome::Gda::DataSelect::compute_columns_attributes (  )

Computes correct attributes for each of model's columns, which includes the "NOT <tt>0</tt>" attribute, the default value, the precision and scale for numeric values.

Returns:
true if no error occurred.
void Gnome::Gda::DataSelect::compute_modification_statements (  )

Makes model try to compute INSERT, UPDATE and DELETE statements to be used when modifying model's contents.

Note:
any modification statement set using set_modification_statement() will first be unset
Returns:
true if no error occurred. If false is returned, then some modification statement may still have been computed.
void Gnome::Gda::DataSelect::compute_row_selection_condition (  )

Offers the same features as set_row_selection_condition() but the expression is computed from the meta data associated to the connection being used when model was created.

NOTE1: make sure the meta data associated to the connection is up to date before using this method, see Gda::Connection::update_meta_store().

NOTE2: if the SELECT statement from which model has been created uses more than one table, or if the table used does not have any primary key, then this method will fail

Returns:
true if no error occurred.
Glib::RefPtr<Connection> Gnome::Gda::DataSelect::get_connection (  )

Get a pointer to the Gda::Connection object which was used when model was created (and which may be used internally by model).

Returns:
A pointer to the Gda::Connection, or 0.
GdaDataSelect* Gnome::Gda::DataSelect::gobj (  ) [inline]

Provides access to the underlying C GObject.

Reimplemented from Gnome::Gda::DataModel.

const GdaDataSelect* Gnome::Gda::DataSelect::gobj (  ) const [inline]

Provides access to the underlying C GObject.

Reimplemented from Gnome::Gda::DataModel.

GdaDataSelect* Gnome::Gda::DataSelect::gobj_copy (  )

Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.

Glib::PropertyProxy<bool> Gnome::Gda::DataSelect::property_auto_reset (  )

Automatically re-run the SELECT statement if any parameter has chanegd since it was first executed.

You rarely need to use properties because there are get_ and set_ methods for almost all of them.

Returns:
A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes.
Glib::PropertyProxy_ReadOnly<bool> Gnome::Gda::DataSelect::property_auto_reset (  ) const

Automatically re-run the SELECT statement if any parameter has chanegd since it was first executed.

You rarely need to use properties because there are get_ and set_ methods for almost all of them.

Returns:
A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes.
Glib::PropertyProxy_ReadOnly< Glib::RefPtr<Connection> > Gnome::Gda::DataSelect::property_connection (  ) const

Connection from which this data model is created.

You rarely need to use properties because there are get_ and set_ methods for almost all of them.

Returns:
A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes.
Glib::PropertyProxy< Glib::RefPtr<Statement> > Gnome::Gda::DataSelect::property_delete_stmt (  )

DELETE Statement to be executed to remove data.

You rarely need to use properties because there are get_ and set_ methods for almost all of them.

Returns:
A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes.
Glib::PropertyProxy_ReadOnly< Glib::RefPtr<Statement> > Gnome::Gda::DataSelect::property_delete_stmt (  ) const

DELETE Statement to be executed to remove data.

You rarely need to use properties because there are get_ and set_ methods for almost all of them.

Returns:
A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes.
Glib::PropertyProxy_ReadOnly< Glib::RefPtr<Set> > Gnome::Gda::DataSelect::property_exec_params (  ) const

GdaSet used when the SELECT statement was executed.

You rarely need to use properties because there are get_ and set_ methods for almost all of them.

Returns:
A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes.
Glib::PropertyProxy_ReadOnly< Glib::RefPtr<Statement> > Gnome::Gda::DataSelect::property_insert_stmt (  ) const

INSERT Statement to be executed to add data.

You rarely need to use properties because there are get_ and set_ methods for almost all of them.

Returns:
A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes.
Glib::PropertyProxy< Glib::RefPtr<Statement> > Gnome::Gda::DataSelect::property_insert_stmt (  )

INSERT Statement to be executed to add data.

You rarely need to use properties because there are get_ and set_ methods for almost all of them.

Returns:
A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes.
Glib::PropertyProxy_ReadOnly<guint> Gnome::Gda::DataSelect::property_model_usage (  ) const

Determines how the data model may be used.

You rarely need to use properties because there are get_ and set_ methods for almost all of them.

Returns:
A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes.
Glib::PropertyProxy< Glib::RefPtr<Statement> > Gnome::Gda::DataSelect::property_prepared_stmt (  )

Associated prepared statement (for internal usage).

You rarely need to use properties because there are get_ and set_ methods for almost all of them.

Returns:
A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes.
Glib::PropertyProxy_ReadOnly< Glib::RefPtr<Statement> > Gnome::Gda::DataSelect::property_prepared_stmt (  ) const

Associated prepared statement (for internal usage).

You rarely need to use properties because there are get_ and set_ methods for almost all of them.

Returns:
A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes.
Glib::PropertyProxy_ReadOnly<bool> Gnome::Gda::DataSelect::property_store_all_rows (  ) const

Tells if model has analyzed all the rows.

You rarely need to use properties because there are get_ and set_ methods for almost all of them.

Returns:
A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes.
Glib::PropertyProxy<bool> Gnome::Gda::DataSelect::property_store_all_rows (  )

Tells if model has analyzed all the rows.

You rarely need to use properties because there are get_ and set_ methods for almost all of them.

Returns:
A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes.
Glib::PropertyProxy_ReadOnly< Glib::RefPtr<Statement> > Gnome::Gda::DataSelect::property_update_stmt (  ) const

UPDATE Statement to be executed to update data.

You rarely need to use properties because there are get_ and set_ methods for almost all of them.

Returns:
A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes.
Glib::PropertyProxy< Glib::RefPtr<Statement> > Gnome::Gda::DataSelect::property_update_stmt (  )

UPDATE Statement to be executed to update data.

You rarely need to use properties because there are get_ and set_ methods for almost all of them.

Returns:
A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes.
void Gnome::Gda::DataSelect::rerun (  )

Requests that model be re-run to have an updated result.

If an error occurs, then model will not be changed.

Since libgdamm 4.2:
Returns:
true if no error occurred.
void Gnome::Gda::DataSelect::set_modification_statement ( const Glib::RefPtr< Statement >&  mod_stmt )

Informs model that it should allow modifications to the data in some columns and some rows using mod_stmt to propagate those modifications into the database.

If mod_stmt is: <itemizedlist> <listitem>

an UPDATE statement, then all the rows in model will be modifyable

</listitem> <listitem>

a DELETE statement, then it will be possible to delete rows in model

</listitem> <listitem>

in INSERT statement, then it will be possible to add some rows to model

</listitem> <listitem>

any other statement, then this method will return an error

</listitem> </itemizedlist>

This method can be called several times to specify different types of modification.

If mod_stmt is an UPDATE or DELETE statement then it should have a WHERE part which identifies a unique row in model (please note that this property can't be checked but may result in model behaving in an unpredictable way).

NOTE1: However, if the set_row_selection_condition() or set_row_selection_condition_sql() have been successfully be called before, the WHERE part of mod_stmt <emphasis>WILL</emphasis> be modified to use the row selection condition specified through one of these methods (please not that it is then possible to avoid specifying a WHERE part in mod_stmt then).

NOTE2: if set_row_selection_condition() or set_row_selection_condition_sql() have not yet been successfully be called before, then the WHERE part of mod_stmt will be used as if one of these functions had been called.

Parameters:
mod_stmtA Gda::Statement (INSERT, UPDATE or DELETE).
Returns:
true if no error occurred.
void Gnome::Gda::DataSelect::set_modification_statement_sql ( const Glib::ustring sql )

Offers the same feature as set_modification_statement() but using an SQL statement.

Parameters:
sqlAn SQL text.
Returns:
true if no error occurred.
bool Gnome::Gda::DataSelect::set_row_selection_condition_sql ( const Glib::ustring sql_where )

Specifies the SQL condition corresponding to the WHERE part of a SELECT statement which would return only 1 row (the expression of the primary key).

For example for a table created as <![CDATA["CREATE TABLE mytable (part1 int NOT <tt>0</tt>, part2 string NOT <tt>0</tt>, name string, PRIMARY KEY (part1, part2))"]]>, and if pmodel corresponds to the execution of the <![CDATA["SELECT name, part1, part2 FROM mytable"]]>, then the sensible value for sql_where would be <![CDATA["part1 = ##-1::int AND part2 = ##-2::string"]]> because the values of the 'part1' field are located in pmodel's column number 1 and the values of the 'part2' field are located in pmodel's column number 2 and the primary key is composed of (part1, part2).

For more information about the syntax of the parameters (named <![CDATA["##-1::int"]]> for example), see the <link linkend="GdaSqlParser.description">GdaSqlParser</link> documentation, and set_modification_statement().

Parameters:
sql_whereAn SQL condition (without the WHERE keyword).
Returns:
true if no error occurred.

Friends And Related Function Documentation

Glib::RefPtr< Gnome::Gda::DataSelect > wrap ( GdaDataSelect *  object,
bool  take_copy = false 
) [related]

A Glib::wrap() method for this object.

Parameters:
objectThe C instance.
take_copyFalse if the result should take ownership of the C instance. True if it should take a new copy or ref.
Returns:
A C++ instance that wraps this C instance.

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