MySQL - FlsGetValue - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: MySQL - FlsGetValue (
/showthread.php?tid=426470)
MySQL - FlsGetValue -
Shaft - 29.03.2013
Hi!
Yesterday I'd tried to change my BlueG's MySQL plugin from r5 or 6 to r15. I've got this error:
(I don't have FlsGetValue in my Kernel32.dll)
I don't know where, but I read that the newest MySQL plugin is for vista and up (I have xp). And here is the question - this is true or false?
__________________________________________________ ___________________________________

Second question. To today I was using only
mysql_query, not
mysql_function_query, so I don't know how it works. Can you explain me that? This is correct query?
mysql_query(dbHandle, "SELECT * FROM `ipb_members` WHERE `username` = '%s'", "onPlayerLogin", "s", PlayerName(playerid));
Re: MySQL - FlsGetValue -
Vince - 29.03.2013
The R8 and above require the Visual C++ 2012 runtime libraries. It's possible that these don't run on Windows XP. Granted, the OS is already 12 years old. End-Of-Life next year.
Re: MySQL - FlsGetValue -
Shaft - 29.03.2013
I know, but I don't want to stop scripting, only because I don't have Vista. ^^ Maybe some advices how to fix it? Maybe other plugins, or libraries can fix it?
Re: MySQL - FlsGetValue -
FunnyBear - 29.03.2013
Quote:
Originally Posted by Vince
The R8 and above require the Visual C++ 2012 runtime libraries. It's possible that these don't run on Windows XP. Granted, the OS is already 12 years old. End-Of-Life next year.
|
What do you mean End-Of-Life ?
Re: MySQL - FlsGetValue -
Shaft - 29.03.2013
Microsoft'll stop supporting Windows XP in '14.
Re: MySQL - FlsGetValue -
iggy1 - 29.03.2013
IIRC visual studio 2012 projects are backwards compatible with visual studio 2010 (service pack 1) projects. You could install visual studio 2010 (if you haven't already) then install service pack one, and compile the plugin using that toolset.
Again I'm not sure if this will work, but worth a try if this will stop you scripting.
http://msdn.microsoft.com/en-gb/libr.../hh266747.aspx
Also depends whether the plugin uses VC 2012 features.
Quote:
If you use both Visual Studio 2012 and Visual Studio 2010 SP1, you can create and modify projects and files in either version as long as you don't add features that require Visual Studio 2012.
|
Re: MySQL - FlsGetValue -
Shaft - 29.03.2013
Quote:
Originally Posted by iggy1
Also depends whether the plugin uses VC 2012 features.
|
Ok, I'll try, but I'd never tried it before.