How to specify blob type in MS Access?
        Posted  
        
            by Firat
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Firat
        
        
        
        Published on 2010-06-08T23:14:55Z
        Indexed on 
            2010/06/08
            23:22 UTC
        
        
        Read the original article
        Hit count: 282
        
How to specify blob type in MS Access? I have office 2007 installed. 
 I am using jdbc, but this should not matter for the SQL query I am passing. Tried to pass a length to it, or FILE type, did not help.
CREATE TABLE mytable ( [integer] INTEGER not null, [string] VARCHAR (255), [datetime] DATETIME, [boolean] BIT, [char] CHAR, [short] SHORT, [double] DOUBLE, [float] FLOAT, [long] LONG, [blob] BLOB, // does not work Primary Key ([integer]) )
© Stack Overflow or respective owner