Search found 3 matches

by Patate
Tue Aug 31, 2004 10:04 pm
Forum: General Discussion
Topic: MySQL programming
Replies: 4
Views: 1714

Success !!!

After a few days of hard search, I've succeeded...

The problem was from within the libmysql library or from the fact that purebasic doesn't support longlong type.

All I had to do was add #define NO_CLIENT_LONG_LONG 1 at line 93 of mysql.h and recompile the dll. Libmysql.dll already ...
by Patate
Mon Aug 23, 2004 7:53 pm
Forum: General Discussion
Topic: MySQL programming
Replies: 4
Views: 1714

Thank you for your quick reply Max.²

http://dev.mysql.com/doc/mysql/en/mysql_data_seek.html

I would need mysql_data_seek to parse the results in memory so I could create functions like FindFirst, FindNext, etc... that would enable the user to find a specific record inside the results of a ...
by Patate
Mon Aug 23, 2004 3:08 pm
Forum: General Discussion
Topic: MySQL programming
Replies: 4
Views: 1714

MySQL programming

Hi,

I'm trying to program an interface to MySQL and hit a bump.

I can't seem to be able to use the mysql_data_seek command from the libmysql.dll library. Everytime I use a callfunction on this command, all my variables in memory change values. Is anyone familiar with that command ?

To help you ...