Jump to content

Сolumn phpvms_acarsdate


VIPAIR

Recommended Posts

  • Administrators

The way the ACARS data is updated you are probably better to create a new table and populate it with the data you are looking for, or possibly use the pireps table to gather the data you are looking for. The current configuration updates any previous records by pilot id, even when it is the start of a new flight. This is done to control the size of that table.

Link to comment
Share on other sites

  • Moderators

The way the ACARS data is updated you are probably better to create a new table and populate it with the data you are looking for, or possibly use the pireps table to gather the data you are looking for. The current configuration updates any previous records by pilot id, even when it is the start of a new flight. This is done to control the size of that table.

I have been trying to make the table update time shorter and wasn't successful. Where can I change the interval for updating the table?

Link to comment
Share on other sites

The way the ACARS data is updated you are probably better to create a new table and populate it with the data you are looking for, or possibly use the pireps table to gather the data you are looking for. The current configuration updates any previous records by pilot id, even when it is the start of a new flight. This is done to control the size of that table.

This is sql acars data update $query = 'UPDATE ' . TABLE_PREFIX . "acarsdata

SET {$upd}

WHERE `id`='{$flight_id}'";

This sql update acars date, right? But it shouldn't change flight id.

Link to comment
Share on other sites

  • Administrators

I have been trying to make the table update time shorter and wasn't successful. Where can I change the interval for updating the table?

The update is triggered by the receipt of ACARs data from a client, there is nothing really to change in phpVMS, it will update as soon as it gets a update.

This is sql acars data update $query = 'UPDATE ' . TABLE_PREFIX . "acarsdata

SET {$upd}

WHERE `id`='{$flight_id}'";

This sql update acars date, right? But it shouldn't change flight id.

Not sure what you are saying here, or where the code is from. The code I see is;

$sql = 'SELECT `id`
FROM ' . TABLE_PREFIX . "acarsdata
WHERE `pilotid`={$pilotid}";

It is going to pick the record by the pilot id.

EDIT: I see where this code is from, it will not update the flight ID, but this is the database ID not a flight number if that is what you are thinking.

Link to comment
Share on other sites

The update is triggered by the receipt of ACARs data from a client, there is nothing really to change in phpVMS, it will update as soon as it gets a update.

Not sure what you are saying here, or where the code is from. The code I see is;

$sql = 'SELECT `id`
FROM ' . TABLE_PREFIX . "acarsdata
WHERE `pilotid`={$pilotid}";

It is going to pick the record by the pilot id.

EDIT: I see where this code is from, it will not update the flight ID, but this is the database ID not a flight number if that is what you are thinking.

I have for example online flight. The phpvms_acarsdate has id (auto_increment) , pilotid, flightnum ... colums. Every minute acars client send updated data to phpvms (Function ACARSData::updateFlightData($pilotid, $data)) . And after every update id of row changes is it possible to don't change row id for whole flight? So after and while flight i want to use and row id as unique variable for all stats for this flight.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...