Salut
j'ai un méchant trouble, un erreur dans ma connexion a ma bd, je ne comprend absolument pas pk cette erreur est créer et la ligne 15 est le rs.Open...
Error Type:
ADODB.Recordset (0x800A0BB9)
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
/bug/test/admin_bd.asp, line 15
je met mon code ici :
Prenom = trim(Request.Form ("prenom"))
dbPath = Server.MapPath("bd/bug.mdb")
' Création de l'objet permettant la connexion
Set Con = Server.CreateObject("ADODB.Connection")
' Connexion à la bd access
Con.Open "DRIVER={Microsoft Access Driver (*.mdb)};" _
& " DBQ=" & dbPath
set rs = server.CreateObject ("adodb.recordset")
rs.Open "Issue", Con, adOpenDynamic, adLockOptimistic, adCmdTable
rs.Addnew
rs("IssueName") = Prenom
rs.Update
rs.Close
set rs = nothing
Con.close
set Con = nothing