Javascript SQL statement


var SQL = "INSERT INTO wrestlers VALUES (null,'"+name+"', "+t+", "+n4+", "+n3+", "+n2+", "+r+", "+e+", "+p1+", "+p2+", "+pdq+", "+pin+", "+tf+", "+md+", "+d+", "+fft+", "+def+", "+dq+", '"+team+"', "+team_points+")";
            rs.Open(SQL, cn);

Everything works fine EXCEPT it doesn’t like the null at the start. it’s for the ID (Its an auto increment) in the table. Any other way I could put null? If there isn’t, I know a simple work around.