Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Sql - insert doesn't work for numeric value?
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Versions des environnements
Visual FoxPro:
VFP 9
OS:
Windows XP SP1
Network:
Windows 2003 Server
Database:
MS SQL Server
Divers
Thread ID:
01001142
Message ID:
01001154
Vues:
17
The best way is to use SPT parameters
=SQLExec(gnConnectionHandle, ;
  "INSERT INTO [TRANSFILE].[DBO].[ADJFILE] (DESCRIPTION, TNUMBER) VALUES (?cDescription, ?nTNumber)")
The Textmerge would be my second choice.

>Please check the codes, and help me to find the correct way of doing this, I can't find a solution as I am new to SQL server.
>
>In SQL Table
>DESCRIPTION NVARCHAR (25)
>TNUMBER FLOAT
>
>In FoxPro Form
>cDescription = AllTrim(Thisform.txtDescription.Value) <--- character value
>nTNumber = Thisform.txtTNumber.Value <--- numeric value
>
>=SQLExec(gnConnectionHandle, "INSERT INTO [TRANSFILE].[DBO].[ADJFILE] (DESCRIPTION) VALUES ('&cDescription') " ) <--- this command works and saves the record
>
>=SQLExec(gnConnectionHandle, "INSERT INTO [TRANSFILE].[DBO].[ADJFILE] (TNUMBER) VALUES ('&nTNumber') " ) <--- this command doesn't work
>
>Did I miss something here?
--sb--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform