Back
/*
Table: CapturedSignature

Columns:
    capturedSignatureID int
    tdate datetime
    emp_no int
    register_no int
    trans_no int
    trans_id int
    filetype varchar
    filecontents binary data

Depends on:
    none

Use:
This table contains digital images of customer signatures.
The standard dtransactions columns indicate what transaction
line the signature goes with. Filetype is a three letter extension
indicating what kind of image it is, and filecontents is the
raw image data. This data is in the database because it's the
only existing pathway to transfer information from the lane
to the server.
*/
Back