![]() |
![]() |
![]() |
GNOME Data Access 4 manual | ![]() |
---|
This section explains how to write virtual methods for the GdaDataSelect subclasses implementations, which should be done when implementing a database provider.
That data model implementation simplifies the implementation of provider's recordsets by having them implement only a few virtual methods, and offering some services.
The data model represents each row in a separate GdaRow object, and virtual methods to retrieve rows have to return new (and correctly initialized) objects of that class. The referencing of these new objects is left up to the implementation which:
can rely on the GdaRow implementation to keep them, using the gda_data_select_take_row () method for each row object created which is the easiest, the fastest as once created, the rows are available for further usage, but will consume more memory with each row read from the model.
can keep the references to these objects to the subclass implementation which will consume less memory but will make it necessary to create a new row object each time a row is read which is slower
can do a mix of the two solutions above: monitor the memory usage for the data model to enable to "cache" some rows and discard some when memory is needed
Note that the methods mentioned in the 1st and 3rd items should be reserved for random data access mode, and that cursor based access mode should implement the method mentioned in th 2nd item.
This method is called when the user calls gda_data_model_get_n_rows ().
Note that the number of rows of the data model may not be known until the cursor has reached the last row of
the recordset.
Once known, the number of rows can be stored in the advertized_nrows
's member of the
GdaDataSelect object.
This method is called when the user calls gda_data_model_get_value_at (), and in available only when the data access mode for the data model is random (that is not cursor based). When data access is cursor based, this method will not be called.
This method is called when the user sets the "store-all-rows" to TRUE. It has the effect of forcing the creation of a GdaRow object for each row of the data model (thus increasing the memory consumption but reducing further access times). It is available only when the data access mode for the data model is random (that is not cursor based). When data access is cursor based, this method will not be called.
This method is called when data access is cursor based and a data model iterator is moved one position forward. The
rownum
is an indication of what the row number will be once the next row has been fetched (it can
safely be discarded if that information is not necessary).
This method is called when data access is cursor based and a data model iterator is moved one position backward. The
rownum
is an indication of what the row number will be once the previous row has been fetched (it can
safely be discarded if that information is not necessary).