Next: Match Keys, Previous: Composite Keys, Up: Base Table [Contents][Index]
In the following functions, the key argument can always be assumed to be the value returned by a call to a keyify routine.
Returns a non-#f
value if there is a row associated with
key in the table opened in handle and #f
otherwise.
Returns a procedure which takes arguments handle and key.
This procedure returns a list of the non-primary values of the relation
(in the base table opened in handle) whose primary key is
key if it exists, and #f
otherwise.
make-getter-1
is a new operation. The relational-database
module works with older base-table implementations by using
make-getter
.
Returns a procedure which takes arguments handle and key.
This procedure returns the value of the indexth field (in the
base table opened in handle) whose primary key is key if
it exists, and #f
otherwise.
index must be larger than key-dimension.
Returns a procedure which takes arguments handle and key and value-list. This procedure associates the primary key key with the values in value-list (in the base table opened in handle) and returns an unspecified value.
Removes the row associated with key from the table opened in handle. An unspecified value is returned.