close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Multiple Update Records???

Thread begun 2/22/2017 9:32 am by Steve | Last modified 10/19/2017 11:11 am by Ray Borduin | 1898 views | 5 replies |

Steve

Multiple Update Records???

Hello,
Where is this in the MySQLi methods?

Sign in to reply to this post

Ray BorduinWebAssist

That isn't currently available in MySQLi. You would have to manually wrap the code in a loop.

Sign in to reply to this post
Did this help? Tips are appreciated...

Accumike

Example Code

Hi Ray

Do you have a simple example of the Update code wrapped in a loop?

Here's my single record update code:

<?php
if (isset($_POST["WA_Update2"]) || isset($_POST["WA_Update2_x"])) {
$UpdateQuery = new WA_MySQLi_Query($crm_realpress_wa);
$UpdateQuery->Action = "update";
$UpdateQuery->Table = "cu_action_act";
$UpdateQuery->bindColumn("idusr_updater_act", "i", "".((isset($_POST["idusr_updater_act"]))?$_POST["idusr_updater_act"]:"") ."", "WA_DEFAULT");
$UpdateQuery->bindColumn("updated_act", "t", "", "WA_CURRENT_TIMESTAMP");
$UpdateQuery->bindColumn("active_act", "i", "".((isset($_POST["active_act"]))?$_POST["active_act"]:"") ."", "WA_DEFAULT");
$UpdateQuery->addFilter("id_act", "=", "i", "".($_POST['id_act']) ."");
$UpdateQuery->execute();
$UpdateGoTo = "timeline.php?id_usr=" . $_GET['id_usr'] . "";
if (function_exists("rel2abs")) $UpdateGoTo = $UpdateGoTo?rel2abs($UpdateGoTo,dirname(__FILE__)):"";
$UpdateQuery->redirect($UpdateGoTo);
}
?>

At present the addFilter is on id_act ($_POST['id_act'])

I would want to to run the loop where idusr_act = xx (this can be got from $_GET['id_usr']) and active_act=1

In effect this would set the active_act field to zero for all records selected in the loop.

Also, how would I trigger the loop?

Hope this makes sense.

Thanks

Sign in to reply to this post

Ray BorduinWebAssist

I'm not sure that you need a loop if all of the records you are updating have the same value... is $_GET['id_usr'] an array you want to loop on?

You may just need:

$UpdateQuery->addFilter("id_act", "=", "i", "".($_POST['id_act']) ."");
$UpdateQuery->addFilter("active_act", "=", "i", "1");
Sign in to reply to this post
Did this help? Tips are appreciated...

Accumike

Block Update Works

Hi Ray

Thanks for the quick reply - yes this works very well. I added 4 addFilters (!) and it does a block update, just like I need.

I wasn't aware that you could have more than one addFilter - perhaps you could mention this in a future upgrade.

Thanks for your help.

Sign in to reply to this post

Ray BorduinWebAssist

You can do a lot with the library files that isn't exposed in the user interfaces. It just breaks the server behavior so you have to edit it by hand moving forward.

Sign in to reply to this post
Did this help? Tips are appreciated...

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...