insert a new record with the given keys and data into the isam file,
insert a new record with the given keys and data into the isam file,the current record of the file will be set to the new record
RESTRICTIONS:
- the file must be open for update,
- allkeys must point to the keys to be inserted,
- allkeyslen must be bigger than 0 and smaller than 1024,
- data must point to the data be inserted,
- datalen must not be negative,
- if datalen == 0, the pointer data is not evaluated at allParameter allkeys must contain all values for all keys of the record. The values have to be prepended by one byte giving the length of the following value. All values have to be concatenated into one string.
Example:
4isam4file3keywith the numbers as binary values and the letters ASCII, specifies three keys with the values "isam", "file" and "key".