trotzdem danke m4a_X 
Kein Problem 
Nicht nur Jeffry hat die Fähigkeiten dir zu Helfen. 
Teste es 
// GEDÖNSTE FÜR GANZ OBEN
#define _SQL_HOUSEMIETER_LOAD 999 // Wusste nicht welche ID du bereits nutzt dafür
// FÜR DEIN TEXTDRAW
new string[256];
format(string, sizeof(string), "SELECT * FROM "#SQLTAG"_account_main WHERE `HausMieter` = '%d'", haus);
mysql_function_query(sqlHandle, string, true, "LoadHouseRentFinish", "siii", string, _SQL_HOUSEMIETER_LOAD, 0, MySqlConnection);
// PUBLIC FÜR DAS LADEN
forward LoadHouseRentFinish(index[],sqlresultid,extraid,SconnectionHandle);
public LoadHouseRentFinish(index[], sqlresultid, extraid, SconnectionHandle)
{
new lResult[128], rows, fields, string[256];
switch(sqlresultid)
{
case _SQL_HOUSEMIETER_LOAD:
{
print("Hausmieter werden geladen...");
cache_get_data(rows, fields);
new lCount, lStart = GetTickCount();
if(rows)
{
while(lCount < rows)
{
cache_get_field_content(lCount, "SPALTE MIT DEM NAMEN", lResult), format(string, sizeof(string), "%s~n~%s", string,lResult);
lCount++;
}
}
TextDrawSetString(HaussystemTextdraw[4], string);
printf("Hausmieter wurden in %d Millisekunden geladen!", GetTickCount()-lStart);
}
}
return 1;
}