Feb 9, 2001 #1 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?
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?
Feb 9, 2001 1 #2 Snaggs Programmer Joined Jan 11, 2000 Messages 393 Location US 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. Upvote 0 Downvote
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.