Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SQL AND INSERT IN AN ACCESS DB
Message
From
24/12/1998 12:16:37
 
 
To
24/12/1998 11:14:21
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00170282
Message ID:
00170309
Views:
15
>I am using the following code
>
>
>gnConnHandle = conector handle
>get data.. into array myarray
>*- INSERTING DATA TO THE ACCESS TABLE
>SEQSTRX = 'INSERT INTO merchant FROM ARRAY myarray'
>=SQLPREPARE(gnConnHandle,SEQSTRX)
>=SQLEXEC(gnConnHandle,SEQSTRX)
>*- END
>
>and nothing happens, I do connect to the database
>and create views with it and now I want to update it
>any help in what I am doing wrong??
>
>mark

don't know, but according to the docs, you don't send the SQL in the sqlexec() after you have prepared the SQL... so, your code should be...

*- INSERTING DATA TO THE ACCESS TABLE
SEQSTRX = 'INSERT INTO merchant FROM ARRAY myarray'
=SQLPREPARE(gnConnHandle,SEQSTRX)
=SQLEXEC(gnConnHandle)
*- END


Also, are you using manual transactions in your connection? If so, you have to commit this.

SQLCOMMIT( gnConnHandle )

BOb
Previous
Reply
Map
View

Click here to load this message in the networking platform