DBMapper Fields

The DBMapper type exposes the following members.

Fields

NameDescription
private fieldAutoIncFlag
first column is treated as an auto-incrementing key column, needed to ignore empty values there (otherwise DBMappers stop here)
private fieldavoidFill
prevent filling of whole table during execution of DB Mappers, this is useful for very large tables that are incrementally filled and would take unnecessary long time to start the DB Mapper. If set to true then each record is searched independently by going to the database. If the records to be stored are not too many, then this is more efficient than loading a very large table.
private fieldchangesDone
used to pass whether changes were done
public fieldCUDFlags
respect C/U/D Flags (DBSheet functionality)
private fielddeleteBeforeMapperInsert
if set, delete table before inserting the contents of DBMapper
private fieldexecuteAdditionalProc
additional stored procedure to be executed after saving
private fieldignoreColumns
columns to be ignored (helper columns)
private fieldIgnoreDataErrors
if set, don't notify error values in cells during update/insert
private fieldinsertIfMissing
if set, then insert row into table if primary key is missing there. Default = False (only update)
private fieldonlyRefreshTheseDBSheetLookups
contains cells in DBSheetLookups with lookups that should only be refreshed after DB modification was done. If empty, all lookups are refreshed for that DB Modifier/Sheet
private fieldpreventColResize
flag to prevent automatic resizing of columns
private fieldprimKeysCount
count of primary keys in data-table, starting from the leftmost column
private fieldtableName
Database Table, where Data is to be stored