procedimioento almacenados
hola chicos. tengo el sigueinte problema:
Private Sub sp_insertar_cliente()
Set ocmdCliente = New ADODB.Command
'nombre del SP
ocmdCliente.CommandText = "sp_insertar_cliente"
ocmdCliente.CommandType = adCmdStoredProc
Set oprmCliente = New ADODB.Parameter
'nNombre
Set oprmCliente = ocmdCliente.CreateParameter ("var_cliente", adVarChar, adParamInput, 100)
ocmdCliente.Parameters.Append oprmCliente
.
.
.
end
En el ordenador de desarrollo me funciona bien, pero cuando lo instalo en otro ordenador me arroja el siguiente mensaje:
Error '430' en tiempo de Ejecuci贸n.
Esta clase no admite automatizaci贸n o la interfaz esperada.
Por favor, si alguien sabe pq.
Gracias,
Private Sub sp_insertar_cliente()
Set ocmdCliente = New ADODB.Command
'nombre del SP
ocmdCliente.CommandText = "sp_insertar_cliente"
ocmdCliente.CommandType = adCmdStoredProc
Set oprmCliente = New ADODB.Parameter
'nNombre
Set oprmCliente = ocmdCliente.CreateParameter ("var_cliente", adVarChar, adParamInput, 100)
ocmdCliente.Parameters.Append oprmCliente
.
.
.
end
En el ordenador de desarrollo me funciona bien, pero cuando lo instalo en otro ordenador me arroja el siguiente mensaje:
Error '430' en tiempo de Ejecuci贸n.
Esta clase no admite automatizaci贸n o la interfaz esperada.
Por favor, si alguien sabe pq.
Gracias,
