BeeBase

Programmable relational database
with graphical user interface Support This Project
This page is also available in Deutsch Français

Documentation

Below documentation is part of the BeeBase dictribution and is also available in PDF.


[ << ] [ >> ]           [Top] [Contents] [Index] [ ? ]

11. Order

For each table in your database you can specify in which order its records should be displayed. This chapter describes how you can specify an order and what consequences it has.


11.1 Empty Order

By default each newly created table has an empty order. This means that if you enter a new record, the created record is inserted at the current position, that is, behind the current record of the table. If you change some fields of an existing record, the position of the record within the table stays unchanged.


11.2 Order by Fields

Sometimes it is useful to have the records sorted by a certain field, e.g. by the `Name' field if the table has one.

In BeeBase you can specify for each table a list of fields by which its records should be sorted. All records are first sorted by the first field in this list. If two records are equal in a field then the next field in the list determines the order. For each field you can specify if the records should be sorted ascending or descending.

For determining the order of fields the rules of the following table are used:

 

Type        Order relation  

Integer     NIL < MIN_INT < ... < -1 < 0 < 1 < ... < MAX_INT
Choice      (Choice values are treated as integers)            

Real        NIL < -HUGE_VAL < ... < -1.0 < 0.0 < 1.0 < ... < HUGE_VAL

String      NIL < "" < ... < "a" < "AA" < "b" < ...   
Memo        (String comparison is done case insensitive)

Date        NIL < 1.1.0000 < ... < 31.12.9999

Time        NIL < 00:00:00 < ... < 596523:14:07

Boolean     NIL < TRUE

Reference   NIL < any_record    
            (Records itself are not comparable for ordering)

If you have specified an order for a table then the records are automatically rearranged whenever you add a new record or change an order-relevant field of a record.


11.3 Order by a Function

Sometimes you want a more complex ordering scheme than a simple field list as described in the last section. For example, a field list can't hold reference fields, so it is not possible to sort your records by a reference field. The reason for this is that with reference fields BeeBase is not able to keep your records ordered at all times (see Comparison function in the BeeBase programming chapter for more details).

However, BeeBase also offers the possibility to specify a comparison function for sorting your records. You can specify any function that you have written using the BeeBase program editor. The function will be called with two record pointers and the returned value should reflect the order of the two records. The function can use any operations for comparing the records, thus it can e.g. compare records using reference fields. For more information on this mechanism, see Comparison function.

If you decide to use a comparison function for ordering a table then please note that BeeBase cannot always detect when records of the table have to be reordered since the dependencies are unknown. Use menu item `Table - Reorder all records' when records are becoming unsorted.


11.4 Changing Orders

To specify an order for the current table select menu item `Table - Change order'. This will open a window containing

For an order using a field list, the following items exist:

For an order using a comparison function, there is the following item:

Furthermore, the following buttons exist:

To enter a new field order list, choose `Field list' in the `Type' field and press the `Clear' button. Then use drag & drop as described above to build up a new list of fields. If you want to have an empty order then just don't add any fields to the order list.

When you are done specifying the order, press the `Ok' button. BeeBase will then reorder all records of the table.


11.5 Reorder all Records

If you ever think that some records of a table became unsorted, e.g. when using a comparison function for ordering, then you can choose menu item `Table - Reorder all records' for sorting all records.


[ << ] [ >> ]           [Top] [Contents] [Index] [ ? ]

This document was generated on August, 22 2022 using texi2html