Una pregunta muy frecuenta .... aquí tienes dos formas de hacerlo utilizando ADO.
oCmd =
Createobject("ADODB.Command")
oRst = Createobject("ADODB.Recordset")
oCmd.ActiveConnection = "DSN=SQLServerX"
oCmd.CommandTimeout = 180
oCmd.CommandText = "{call SalesByCategory ('Condiments')}"
oRst.Open(oCmd)
Do While !oRst.Eof
? oRst.Fields("ProductName").Value + " Total
Compra" + ;
Transform(oRst.Fields("TotalPurchase").Value)
oRst.MoveNext
Enddo
Otra forma
#Define
adCmdStoredProc 4
oCmd = Createobject("ADODB.Command")
oRst = Createobject("ADODB.Recordset")
oCmd.ActiveConnection = "DSN=SQLServerX"
oCmd.CommandTimeout = 180
oCmd.CommandText = "SalesByCategory ('Condiments')"
oCmd.CommandType = adCmdStoredProc
oRst.Open(oCmd.EXECUTE( ))
Do While !oRst.Eof
? oRst.Fields("ProductName").Value
+ " Total Compra" + ;
Transform(oRst.Fields("TotalPurchase").Value)
oRst.MoveNext
Enddo
Si tienes inquietudes, sígueme en Twitter para contactarme.
Seguir a @davamadort¿Deseas que tu sitio web aparezca en buscadores como google, yahoo, msn?
Contrata un plan de hosting en www.winnethost.com y recibes totalmente gratis el registro de tu sitio web en más de 24 buscadores, entre ellos google, yahoo, msn
El Sitio La Web de Davphantom se encuentra hospedado en WinNetHost.com