Attachments
The attachments available within the Domino database.
Select
The driver supports filtering on the @unid column using the = and IN operators.
All other filters are executed client-side within the driver.
For example, the following query is processed server side:
SELECT * FROM Attachments WHERE [@unid] IN ('00000000000000000000000000000000', '11111111111111111111111111111111')
You can turn off client-side execution by setting SupportEnhancedSQL to false in which case any search criteria that refers to other columns will cause an error.
Columns
| Name | Type | Description |
| @unid [KEY] | String | The unique identifier of the note containing the attachment. |
| @modified | Datetime | When the attachment data was last modified. |
| FileName [KEY] | String | The name of the attachment, unique within a single note. |
| Size | Long | The size of the attachment data in bytes. |