Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Can't get stored procedure to return data
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
00569998
Message ID:
00570065
Vues:
17
This message has been marked as the solution to the initial question of the thread.
There's a problem with the second parameter you are passing into SP. It has value of 2001 but TinyInt range is from 0 to 255. Use smallint or int instead.

>Hi everyone,
>
>I have the following SP call in method in an exe:
>nSQLExec = SQLExec(nConn, "{Call RKR_GetShiftsByMonth (1,2001)}")
>
>And this is the SP:
>CREATE PROCEDURE [RKR_GetShiftsByMonth]
>@Month as TinyInt = 2,
>@Year as Int = 2001
> AS
>Select tshiftstart, tshiftend
>From tblOESch_Shifts
>Where DatePart(Month,tshiftstart) = @Month and DatePart(Year,tshiftstart) = @Year
>
>The value returned by SQLExec is -1. The nConn value = 1. What am I missing/doing wrong?
>
>Thanks in advance...
>
>Keith
--sb--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform