Sintassi per stored procedure

fulla

Nuovo Utente
2 Feb 2009
1
0
0
Salve,

qualcuno mi sa dire qual'è la sintassi corretta per eseguire una stored procedure mysql da uno script asp ?

Da db ho usato la call per provare la stored e funziona.
Da script le istruzioni complete sono:

Set Comando=Server.CreateObject("ADODB.COMMAND")
Comando.ActiveConnection=objconn
StrCom = "Sp_Insert_Utenti " & idutente & ",`" & nome & "`,`" & cognome & "`,`" & utente & "`,`" & password & "`, " & fnzrip & ", " & fnzprod & ", " & fnzrep & ", " & fnztab & ", " & fnzabi & " "
Comando.CommandText = StrCom
Comando.Execute


e mi da il seguente errore

Microsoft OLE DB Provider for ODBC Drivers (0x80040E14)
[MySQL][ODBC 3.51 Driver][mysqld-5.0.67-0ubuntu6]You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Sp_Insert_Utenti 16,'john','cipollina','John Cipollina','task', 1, 1, 0, 0, 0' at line 1

Ho provato a sostituire l'apice " ' " a " ` " ma non funziona ugualmente
 

Discussioni simili