Inserting a record in an Access database

This is the code i am attempting to use to insert a record. I keep getting the dreaded white screen saying that the page cannot be displayed so who knows what is going on. Can anyone spot anything or have any suggestions?

var thisdatapath = Server.mapPath("SimplyDelicious.mdb");
var dbConn = Server.CreateObject("ADODB.Connection");
dbConn.Open("PROVIDER=MICROSOFT.JET.OLEDB.4.0;DATA SOURCE=" + thisdatapath);

SQL="INSERT INTO pictures (dancerid,pictname,mainpict,twogirlshow) VALUES (";
SQL = SQL + ThisId + ",";
SQL = SQL + "'" + ThisPicName + "',";
SQL = SQL + "'" + "Yes" + "',";
SQL = SQL + "'" + "No" + "')";
var IRS = dbConn.execute(SQL);
[722 byte] By [JimHol] at [2007-11-19 19:38:40]