Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MySql to VFP cursor

Claudio Costa

Programmer
Apr 1, 2025
7
Hi again.

Im trying to get the rows from an MySql Select to a VFP cursor but all I get is an result.

Im using VFP 9 and MySql ODBC 8.0 Ansi driver

My code:

SQLEXEC(gnConnHandle,'SELECT referencia FROM artigos','abc')

SELECT abc

browse

but what i get is this :
 

Attachments

  • vfp.jpg
    vfp.jpg
    53.1 KB · Views: 13
Well, you ignored what I said and just listened to Tore plus assume getting a connection handle already proves a driver works.

I'm serious here, the driver you use must be changed. You can of course create a DSN, but the final truth about a driver working is with actively working on data in all ways.

We invested quite some time in the threads I found and you disregard that all as irrelevant.
 
Last edited:
Here for reference:

 
Hi again.

Im trying to get the rows from an MySql Select to a VFP cursor but all I get is an result.

Im using VFP 9 and MySql ODBC 8.0 Ansi driver

My code:

SQLEXEC(gnConnHandle,'SELECT referencia FROM artigos','abc')

SELECT abc

browse

but what i get is this :

In addition to Chris, you can also try the Mariadb 3.1 driver, works fine with VFP and i think released in 2023
 
Yes, I pointed out MariaDB Drivers may work, too in the other thread.
Im using VFP 9 and MySql ODBC 8.0 Ansi driver
Since you say that the question now is which one. Assuming you indeed installed 8.0.33 the question that's most relevant is what data type the referencia column of the artigos table is and what you get from SELECT Count(*) from artigos.
 
By the way: It doesn't suffice to install the correct driver. If you still use SQLCONNECT('WebBrowser', 'root', 'mysql') and didn't define a new DSN or changed the configuration of the WebBrowser DSN you already have to use the 8.0.33 driver, then you still get the same erroneous behavior. How is your DSN configured?
 
The connection is ok , I can insert rows in the mysql table.

Its just the Select that is not given de results.
 
I don't use MySql myself, so I am not quite sure about the syntax. Could it be that you need to add a Where clause? Something like
SELECT referencia FROM artigos Where 1=1
 

Part and Inventory Search

Sponsor

Back
Top