J'aimerai créer une table d'asp :
j'ai fait ça :

Dim objRS
Dim strSql
Const adCmdTable = 2
Const adLockOptimistic = 3

Set objRS = Server.CreateObject("ADODB.Recordset")
strSql = "create table essai (id int not null, nom varchar(255), primary key(id))"
objRS.Open strSql, objConn2, adLockOptimistic, adCmdTable

objRS.Close
Set objRS = Nothing

objConn2.Close
Set objConn2 = Nothing


mais ça ne marche pas ! Quelqu'un peut m'aider à rouver l'erreur ? Merci