Posts: 12
	Threads: 2
	Joined: Mar 2013
	
	
 
	
	
		Can you upload the MySQL Plugin on your ****** Site?
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 505
	Threads: 42
	Joined: Mar 2009
	
Reputation: 
0
	 
	
	
		you using the correct library ?
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 505
	Threads: 42
	Joined: Mar 2009
	
Reputation: 
0
	 
	
	
		inc file doesnt matter's that is just needed for compiling.You should have mysql.dll in your plugins folder and libmysql.dll with the main folder!
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 539
	Threads: 24
	Joined: Nov 2008
	
Reputation: 
0
	 
	
	
		Goto the ****** page for a download link.
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 1,534
	Threads: 129
	Joined: Jan 2012
	
Reputation: 
0
	 
	
	
		I got this error
"Could not locate the procedure entry point __ crtCreateSymbolicLinkW in dynamic link library MSVCR110.dll"
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 159
	Threads: 13
	Joined: Oct 2012
	
Reputation: 
0
	 
	
	
		for sure this is the best plugin that is released
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 12
	Threads: 2
	Joined: Mar 2013
	
	
 
	
	
		Hey,
Which Command can I use for Get float in R7?
Code:
stock Float:mysql_GetFloat(Table[], Field[], Where[], Is[])
{
	new Query[128], Float:sqlfloat;
	mysql_real_escape_string(Table, Table);
	mysql_real_escape_string(Field, Field);
	mysql_real_escape_string(Where, Where);
	mysql_real_escape_string(Is, Is);
	format(Query, sizeof(Query), "SELECT `%s` FROM `%s` WHERE `%s` = '%s'", Field, Table, Where, Is);
	mysql_function_query(MYSQLConnection,Query,true,"QueryFinished","");
	mysql_store_result();
	mysql_fetch_float(sqlfloat);
	mysql_free_result();
	return sqlfloat;
}
 mysql_fetch_float(sqlfloat); // It dosn't works in R7!
Any ideas
 
	
		
	
 
 
	
	
	
		
	Posts: 140
	Threads: 2
	Joined: Jan 2012
	
Reputation: 
0
	 
	
	
		Thank you, works perfectly fine. I guess it should be covered in the manual, shouldn't it?