Link to home
Start Free TrialLog in
Avatar of ipendlebury
ipendlebury

asked on

Creating Memo fields with ADOX

I'm using ADOX to create a local table in order to cache records from my SQL Server database. I'm writing my code so that the table will automatically be deleted and recreated should the structure of the SQL Server table change.

One field in the SQL Server table is declared as varchar(500). Because of the size, this means that a memo field is necessary in my Access table. My problem is that there doesn't appear to be a constant available to declare the Memo data type in ADOX. Here's the list of data types I am using. Is it incomplete?

http://support.microsoft.com/default.aspx?scid=kb%3Ben-us%3B266302

Ian
SOLUTION
Avatar of Leigh Purvis
Leigh Purvis
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ipendlebury
ipendlebury

ASKER

Yes, it was there all along. I expected it to be called adMemo or something. I've just tried it and it works fine.

Thanks for your help guys.

Oan