In my testing, SQL is complaining about the two empty strings.
If you change
<snip>,"Gering, NE","69341-3377",1,"","") <snip>
to
<snip>,"Gering, NE","69341-3377",1," "," ") <snip> (1 space between the quotes)
I do not get the error. But that leave a single space in the fields. Not ideal.....
Then I changed the SQL string to
Code:
INSERT INTO Families (FamilyName,FamilyAddress,FamilyCityState,FamilyZip,FamilySalutation,FamilyPhone,[FamilyE-Mail])
Values("Ackerman, Ron","645 J Street","Gering, NE","69341-3377",1,Null,Null)
The query executed without error.
So, it seems the problem is the "" in the query...