Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help me:) Insert a Null Field 1

Status
Not open for further replies.

mandarine

Programmer
Joined
May 20, 2000
Messages
19
Location
FR

I need to insert a null field to database but I can't
why?

dim field_number1 as string

...
sql="insert into table values ... '" & field_number1 & "')"
...

I want to insert field_number1 as NULL! I can't do it!
Could you help me?
 
You have to use the word NULL.

INSERT INTO ItemDetail (Item,Qty) Values(NULL,12) Snaggs
tribesaddict@swbell.net
To define recursion, we must first define recursion.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top