Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Chamando o procedimento armazenado do MySQL usando VB6 com parâmetro OUT


Parece um bug não resolvido do MySQL ODBC e C/API

Uma solução é executar isso usando um comando SQL com variáveis ​​preparadas:
Dim rs As ADODB.Recordset 

Set cmd = New ADODB.Command
cmd.ActiveConnection = cn
cmd.CommandType = adCmdText
cmd.CommandText = "call InsertList(?,?,?,@fResult)"

cmd.Parameters.Append cmd.CreateParameter("fName", adVarChar, adParamInput, 20, Text3.Text)
cmd.Parameters.Append cmd.CreateParameter("fType", adVarChar, adParamInput, 3, Text2.Text)
cmd.Parameters.Append cmd.CreateParameter("fFood", adVarChar, adParamInput, 20, Text1.Text)

cmd.Execute

'And after that, using the same connection, get the value of 
'@fResult from a single query:

Set rs = cn.Execute("select @fResult as fResult")
MsgBox rs!fResult

Você obterá o valor esperado.