Dim oConn,strSQL
Set oConn = Server.CreateObject("ADODB.Connection")
oConn.Open "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & Server.MapPath("db/general.mdb")
strSQL = "update peliculas set tit='no hat datos' where tit=null "
oConn.Execute(strSQL)
oConn.Close
set oConn = nothing
Como lo hago

