ho un codice di questo tipo:

codice:
<%
Set Conn = Server.createobject("ADODB.Connection")
Conn.ConnectionString="DRIVER={Microsoft Access Driver (*.mdb)};DBQ="& Server.MapPath("dbase.mdb") &";"
Conn.Open

......
x = 1
...
esplosione = "Esplosione" & x
Set rs = Server.CreateObject("ADODB.Recordset")
SQLexpl = "SELECT figlio,livello,id INTO " & esplosione & " FROM T_Anleg WHERE padre = '" & request("codice") & "' ORDER BY figlio"
conn.execute SQLexpl

......

conn.close
set conn=nothing
%>
mi da errore quando cerco di eseguire la query, dice che il database non è disponibile in scrittura o qualcosa del genere... come mai?