|
-
Dec 10th, 2003, 06:16 AM
#1
Thread Starter
Fanatic Member
SQL Var types question
Here is a line of code from a function from an MS Access 2000 DB I am working on.
VB Code:
DoCmd.RunSQL "ALTER TABLE tester ADD Notes memo"
I know I can use VarChar, Int, Currency, and probably others.
Q1. Where can I see a full list of types I can use?
Q2. Failing that any one know what the type is for a Yes/no (boolean) field is?
-
Dec 10th, 2003, 07:11 AM
#2
Don't you have access?
It's YES/NO from the GUI Design View, and in an SQL String that would be BOOLEAN.
-
Dec 10th, 2003, 07:57 AM
#3
-= B u g S l a y e r =-
VB Code:
'TEXT
'MEMO
'LONG
'TINYINT
'SMALLINT
'INTEGER
'REAL
'FLOAT
'DECIMAL
'DOUBLE
'COUNTER
'BIT
'YESNO
'DATE
-
Dec 10th, 2003, 08:26 AM
#4
hmm... maybe I had it confused?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|