How Do I Create a MEMO Field Using the SQL CREATE TABLE?
I am trying to make tables with Memo fields using the SQL CREATE TABLE statement; what do i use as the key word? I know to use TEXT for text fields (up to 255 chars), but i cannot find anywhere how to create Memo fields;
Do i need to use ADO? What is the How-To?
Thank you!
–llyal
CREATE TABLE tblFriends
(FriendID INTEGER NOT NULL,
LastName TEXT(50) NOT NULL,
FirstName TEXT(50) NOT NULL,
Phone TEXT(10),
Email TEXT(50),
Notes MEMO?(???));