01.03.2015, 22:41 
	
	
	
		Hi. For example:
Second printf will be done after sending and get data from `TableTest`? Or it query is in queue and it is possible that after that line there wont be data from table?
	
	
	
	
Код:
functionTest()
{
 printf("1");
 mysql_pquery(MySQL_Handler, "SELECT * FROM `TableTest`");
 printf("2");
}

