hi andrew:
for example
In the doc of this method is:
createRecord
public long createRecord(java.lang.String[] data)
throws DuplicateKeyExceptionCreates a new record in the database. it locks the entire database during the creating.
Specified by:
createRecord in interface DBAccess
Returns:
long - The record number of the new record.
Throws:
DuplicateKeyException - - If attempted to add a duplicate key. The first field, the key, must be unique in the database.
DataSystemException - - If database file could not be accessed with an I/O error occuring or if another
thread has interrupted the current thread.And if the wrong number of fields was provided by the parameter.
???