hola
tomando como ejemplo el codigo de Maykire yo hasta ahora lo he hecho asi
Código PHP:
<%
set cnn = Server.CreateObject("ADODB.Connection")
cnn.Open ("PROVIDER=Microsoft.Jet.OLEDB.4.0;DATA SOURCE=" + Server.MapPath("base/diario.mdb"))
sqltext = "UPDATE noticias SET detalle='b' where id=56"
cnn.Execute(sqltext)
cnn.Close
set cnn = Nothing
%>
¿hay algun inconveniente en ello?
gracias