Jump to content

Postgres Update


smti

Recommended Posts

Hi Folks,

 

I am designing a work ticket system for my office. Right now, those who file a work ticket need to know where they are in the work queue. To accomplish this, I have created a field called pqv (Present Queue Value). When the person enters a work ticket, they are assigned their queue value.

 

Now the problem: Once a ticket is closed, the PQVs for all the other open tickets need to be adjusted accordingly (By subtracting 1 from their PQV).  I have written a query to display all open records and their corresponding queue values; however is displayed and updated, not all of them.

 

Here is my code:

 

function adjust_queue(){

include("../../../includes/connection.inc.php");

//Get Queue Values for those still in the database.		
$sql = "SELECT ticketid, pqv FROM tickets where status = 'In Queue'";
$result = pg_query($dbh, $sql);
if (!$result) {
     die("Error in SQL query: " . pg_last_error());
}
  
// iterate over result set
// print each row
while ($row = pg_fetch_array($result)) {
  
  echo "Ticket ids are:" .$row[ticketid];
  echo "<br>";
  echo "Queue Values are:" .$row[pqv];
  echo "<br>";
  

  
//Subtract one from present queue value of each student in queue.
$present_queue_value=$row['pqv'];
$new_queue_value = $present_queue_value-1;

//Excute update query with new queue value
$ticketid=$row['ticketid'];
$query = "UPDATE tickets SET pqv='$new_queue_value' where ticketid='$ticketid'";
}  
  
}
//Send Confirmations to student
  send_closing_confirmation();
}

 

 

When the TicketIDs and PQVs are echo'd only one record is displayed. It seems that if I remove the update query and only display open records all records in the database are show properly.

 

 

Any help would be greatly appreciated!

 

 

Thank You,

 

smti

Link to comment
Share on other sites

  • 2 weeks later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

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.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.