Hallo Breadfish Community,
ich arbeite gerade an einem Haussystem, doch es wird nur das erste Haus geladen und
ich weiß nicht wieso...
Code
forward OnHausesLoad();
public OnHausesLoad()
{
new num_fields,num_rows;
cache_get_data(num_rows,num_fields,Handle);
if(!num_rows)return 1;
for(new i=0; i<num_rows; i++)
{
new hid=getFreeHausID();
hInfo[hid][h_id]=cache_get_field_content_int(i,"id",Handle);
hInfo[hid][h_x]=cache_get_field_content_float(i,"h_x",Handle);
hInfo[hid][h_z]=cache_get_field_content_float(i,"h_z",Handle);
hInfo[hid][h_y]=cache_get_field_content_float(i,"h_y",Handle);
hInfo[hid][ih_x]=cache_get_field_content_float(i,"ih_x",Handle);
hInfo[hid][ih_z]=cache_get_field_content_float(i,"ih_z",Handle);
hInfo[hid][ih_y]=cache_get_field_content_float(i,"ih_y",Handle);
hInfo[hid][h_besitzer]=cache_get_field_content_int(i,"h_besitzer",Handle);
hInfo[hid][h_interior]=cache_get_field_content_int(i,"h_interior",Handle);
hInfo[hid][h_preis]=cache_get_field_content_int(i,"h_preis",Handle);
hInfo[hid][h_lock]=cache_get_field_content_int(i,"h_lock",Handle);
updateHaus(hid);
new str[128]; format(str, sizeof(str), "Haus(ID: %i) geladen. (X: %f | Y: %f | Z: %f | HID: %i )",hInfo[hid][h_id],hInfo[hid][h_x],hInfo[hid][h_y],hInfo[hid][h_z],hid);
print(str);
}
return 1;
}
Alles anzeigen
Code
updateHaus(hid)
{
new string[128];
if(hInfo[hid][h_pickup])
{
DestroyPickup(hInfo[hid][h_pickup]);
}
if(hInfo[hid][h_text])
{
Delete3DTextLabel(hInfo[hid][h_text]);
}
if(hInfo[hid][h_besitzer]==0)
{
hInfo[hid][h_pickup] = CreatePickup(19470, 1, hInfo[hid][h_x], hInfo[hid][h_y], hInfo[hid][h_z]-0.6, 0);
format(string, sizeof(string), "{F2F2F2}[ {FF342F}Dieses Haus steht zum Verkauf{F2F2F2} ]\nPreis: {FF342F}%i {F2F2F2}Euro\nBefehl: /hauskaufen",hInfo[hid][h_preis]);
hInfo[hid][h_text] = Create3DTextLabel(string, Hellgrau, hInfo[hid][h_x],hInfo[hid][h_y],hInfo[hid][h_z],10.0,0,1);
//new string2[128]; format(string2, 128, "%f | %f | %f",hInfo[hid][h_x],hInfo[hid][h_y],hInfo[hid][h_z]); print(string2);
} else {
new query[128], besitzername[32]; format(query, 128, "SELECT * FROM spieler WHERE id='%i'",hInfo[hid][h_besitzer]); mysql_query(Handle, query, true);
cache_get_field_content(0, "ICName", besitzername, Handle, 32);
format(besitzername, sizeof(besitzername), "%s",str_replace("_", " ", besitzername));
hInfo[hid][h_pickup] = CreatePickup(1273, 1, hInfo[hid][h_x], hInfo[hid][h_y], hInfo[hid][h_z], 0);
//new str[128]; format(str, 128, "%f | %f | %f",hInfo[hid][h_x],hInfo[hid][h_y],hInfo[hid][h_z]); print(str);
format(string, sizeof(string), "{F2F2F2}[ {FF342F}Dieses Haus gehört %s{F2F2F2} ]\nBefehl: /enter",besitzername);
hInfo[hid][h_text] = Create3DTextLabel(string, Hellgrau, hInfo[hid][h_x],hInfo[hid][h_y],hInfo[hid][h_z],10.0,0,1);
}
return 1;
}
Alles anzeigen
Code
[11:20:00] Haus(ID: 14) geladen. (X: -1821.359985 | Y: 2905.520019 | Z: 37.224498 | HID: 0 )
[11:20:00] Haus(ID: 0) geladen. (X: 0.000000 | Y: 0.000000 | Z: 0.000000 | HID: 1 )
[11:20:00] Haus(ID: 0) geladen. (X: 0.000000 | Y: 0.000000 | Z: 0.000000 | HID: 1 )
[11:20:00] Haus(ID: 0) geladen. (X: 0.000000 | Y: 0.000000 | Z: 0.000000 | HID: 1 )
[11:20:00] Haus(ID: 0) geladen. (X: 0.000000 | Y: 0.000000 | Z: 0.000000 | HID: 1 )
[11:20:00] Haus(ID: 0) geladen. (X: 0.000000 | Y: 0.000000 | Z: 0.000000 | HID: 1 )
[11:20:00] Haus(ID: 0) geladen. (X: 0.000000 | Y: 0.000000 | Z: 0.000000 | HID: 1 )
[11:20:00] Haus(ID: 0) geladen. (X: 0.000000 | Y: 0.000000 | Z: 0.000000 | HID: 1 )
Code
[11:20:00] [DEBUG] Calling callback "OnHausesLoad"..
[11:20:00] [DEBUG] cache_get_data - connection: 1
[11:20:00] [DEBUG] cache_get_field_content_int - row: 0, field_name: "id", connection: 1
[11:20:00] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "id", data: "14"
[11:20:00] [DEBUG] cache_get_field_content_float - row: 0, field_name: "h_x", connection: 1
[11:20:00] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "h_x", data: "-1821.36"
[11:20:00] [DEBUG] cache_get_field_content_float - row: 0, field_name: "h_z", connection: 1
[11:20:00] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "h_z", data: "37.2245"
[11:20:00] [DEBUG] cache_get_field_content_float - row: 0, field_name: "h_y", connection: 1
[11:20:00] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "h_y", data: "2905.52"
[11:20:00] [DEBUG] cache_get_field_content_float - row: 0, field_name: "ih_x", connection: 1
[11:20:00] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "ih_x", data: "302.181"
[11:20:00] [DEBUG] cache_get_field_content_float - row: 0, field_name: "ih_z", connection: 1
[11:20:00] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "ih_z", data: "999.148"
[11:20:00] [DEBUG] cache_get_field_content_float - row: 0, field_name: "ih_y", connection: 1
[11:20:00] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "ih_y", data: "300.723"
[11:20:00] [DEBUG] cache_get_field_content_int - row: 0, field_name: "h_besitzer", connection: 1
[11:20:00] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "h_besitzer", data: "6"
[11:20:00] [DEBUG] cache_get_field_content_int - row: 0, field_name: "h_interior", connection: 1
[11:20:00] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "h_interior", data: "4"
[11:20:00] [DEBUG] cache_get_field_content_int - row: 0, field_name: "h_preis", connection: 1
[11:20:00] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "h_preis", data: "500"
[11:20:00] [DEBUG] cache_get_field_content_int - row: 0, field_name: "h_lock", connection: 1
[11:20:00] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "h_lock", data: "0"
[11:20:00] [DEBUG] mysql_query - connection: 1, query: "SELECT * FROM spieler WHERE id='6'", use_cache: true
[11:20:00] [DEBUG] CMySQLQuery::Execute - starting query execution
[11:20:00] [DEBUG] CMySQLQuery::Execute - query was successfully executed within 0.237 milliseconds
[11:20:00] [DEBUG] CMySQLResult::CMySQLResult() - constructor called
[11:20:00] [DEBUG] CMySQLHandle::SaveActiveResult - cache saved (id: 11)
[11:20:00] [DEBUG] cache_get_field_content - row: 0, field_name: "ICName", connection: 1, max_len: 32
[11:20:00] [DEBUG] CMySQLResult::GetRowDataByName - row: '0', field: "ICName", data: "James_Brown"
[11:20:00] [DEBUG] cache_get_field_content_int - row: 1, field_name: "id", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('1')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 1, field_name: "h_x", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('1')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 1, field_name: "h_z", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('1')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 1, field_name: "h_y", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('1')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 1, field_name: "ih_x", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('1')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 1, field_name: "ih_z", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('1')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 1, field_name: "ih_y", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('1')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 1, field_name: "h_besitzer", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('1')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 1, field_name: "h_interior", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('1')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 1, field_name: "h_preis", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('1')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 1, field_name: "h_lock", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('1')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 2, field_name: "id", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('2')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 2, field_name: "h_x", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('2')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 2, field_name: "h_z", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('2')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 2, field_name: "h_y", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('2')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 2, field_name: "ih_x", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('2')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 2, field_name: "ih_z", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('2')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 2, field_name: "ih_y", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('2')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 2, field_name: "h_besitzer", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('2')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 2, field_name: "h_interior", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('2')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 2, field_name: "h_preis", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('2')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 2, field_name: "h_lock", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('2')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 3, field_name: "id", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('3')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 3, field_name: "h_x", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('3')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 3, field_name: "h_z", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('3')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 3, field_name: "h_y", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('3')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 3, field_name: "ih_x", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('3')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 3, field_name: "ih_z", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('3')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 3, field_name: "ih_y", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('3')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 3, field_name: "h_besitzer", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('3')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 3, field_name: "h_interior", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('3')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 3, field_name: "h_preis", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('3')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 3, field_name: "h_lock", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('3')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 4, field_name: "id", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('4')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 4, field_name: "h_x", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('4')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 4, field_name: "h_z", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('4')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 4, field_name: "h_y", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('4')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 4, field_name: "ih_x", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('4')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 4, field_name: "ih_z", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('4')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 4, field_name: "ih_y", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('4')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 4, field_name: "h_besitzer", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('4')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 4, field_name: "h_interior", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('4')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 4, field_name: "h_preis", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('4')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 4, field_name: "h_lock", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('4')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 5, field_name: "id", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('5')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 5, field_name: "h_x", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('5')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 5, field_name: "h_z", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('5')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 5, field_name: "h_y", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('5')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 5, field_name: "ih_x", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('5')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 5, field_name: "ih_z", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('5')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 5, field_name: "ih_y", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('5')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 5, field_name: "h_besitzer", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('5')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 5, field_name: "h_interior", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('5')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 5, field_name: "h_preis", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('5')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 5, field_name: "h_lock", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('5')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 6, field_name: "id", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('6')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 6, field_name: "h_x", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('6')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 6, field_name: "h_z", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('6')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 6, field_name: "h_y", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('6')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 6, field_name: "ih_x", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('6')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 6, field_name: "ih_z", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('6')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 6, field_name: "ih_y", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('6')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 6, field_name: "h_besitzer", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('6')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 6, field_name: "h_interior", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('6')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 6, field_name: "h_preis", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('6')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 6, field_name: "h_lock", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('6')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 7, field_name: "id", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('7')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 7, field_name: "h_x", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('7')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 7, field_name: "h_z", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('7')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 7, field_name: "h_y", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('7')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 7, field_name: "ih_x", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('7')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 7, field_name: "ih_z", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('7')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_float - row: 7, field_name: "ih_y", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('7')
[11:20:00] [ERROR] cache_get_field_content_float - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 7, field_name: "h_besitzer", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('7')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 7, field_name: "h_interior", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('7')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 7, field_name: "h_preis", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('7')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
[11:20:00] [DEBUG] cache_get_field_content_int - row: 7, field_name: "h_lock", connection: 1
[11:20:00] [ERROR] CMySQLResult::GetRowDataByName() - invalid row index ('7')
[11:20:00] [ERROR] cache_get_field_content_int - invalid datatype
Alles anzeigen