I've been trying to hazard a guess at the correct syntax for a DDL query that will create a OLE Object field. While I did discover how to this I stumbled across this data type named "Binary" by accident. It appears that the Binary Data type cannot be created via the GUI but can via DDL queries and DAO. Syntax for these DDL queries are provided below.
Question: What is the significance of the various types of Binary fields that these queries create, (ie: why would I want one, when and where might I prefer one of these data types over any other).
CurrentDb.Execute "ALTER TABLE tblCustomer ADD COLUMN MyBinary BINARY" 'Binary (Defaults to Length of 255)
CurrentDb.Execute "ALTER TABLE tblCustomer ADD COLUMN MyBinary1 BINARY(1)" 'Binary (Length of 1)
CurrentDb.Execute "ALTER TABLE tblCustomer ADD COLUMN MyBinary15 BINARY(15)" 'Binary (Length of 15)
CurrentDb.Execute "ALTER TABLE tblCustomer ADD COLUMN MyVarBinary VARBINARY" 'Binary (Defaults to length of 255 characters - is this different than the first query listed above)
Start Free Trial