Welcome Guest, Not a member yet? Register   Sign In
Incrementing a counter in the database
#12

[eluser]franto[/eluser]
[quote author="Phil Sturgeon" date="1243619735"]Some advice that will solve every problem you ever have with running MySQL from PHP.

1.) Output the final query and see if it looks right.

Code:
ob_clean();
echo $this->db->last_query();
exit();

2.) If it looks fine, try running it in phpMyAdmin or another GUI.

3.) If it runs fine, your PHP is not running the query correctly (don't find this one happening so often).

4.) If it fails, you get an error message telling you what's wrong. Then, correct your query.

Debugging my friend, is a wonderful thing.[/quote]

Thanks for help, I'm newbie in Code Igniter, and didnt know how to write SQL statement from Active Record. I have to confess Im Senior Flex developer and I'm used to debug daily many hours Smile but I'm not developing in PHP so much, this is just my sideproject Smile

btw here is result:

UPDATE `wtu_messages` SET `offence_count` = 'offence_count + 5' WHERE `id` = '2'

problem is with difference quotes in SET part. It should be

UPDATE `wtu_messages` SET offence_count = offence_count + 5 WHERE `id` = '2'

But I don't know how to write it via Active record, so I will rather try to create SQL statement as a string. Or maybe you know how to fix it via Active Record?


Messages In This Thread
Incrementing a counter in the database - by El Forum - 08-31-2008, 01:28 PM
Incrementing a counter in the database - by El Forum - 09-03-2008, 12:38 AM
Incrementing a counter in the database - by El Forum - 09-03-2008, 01:03 AM
Incrementing a counter in the database - by El Forum - 09-03-2008, 02:41 AM
Incrementing a counter in the database - by El Forum - 09-06-2008, 09:20 AM
Incrementing a counter in the database - by El Forum - 09-07-2008, 10:05 AM
Incrementing a counter in the database - by El Forum - 09-08-2008, 12:47 AM
Incrementing a counter in the database - by El Forum - 09-08-2008, 01:44 AM
Incrementing a counter in the database - by El Forum - 09-08-2008, 02:59 AM
Incrementing a counter in the database - by El Forum - 05-29-2009, 05:59 AM
Incrementing a counter in the database - by El Forum - 05-29-2009, 06:55 AM
Incrementing a counter in the database - by El Forum - 05-29-2009, 07:10 AM
Incrementing a counter in the database - by El Forum - 05-29-2009, 07:16 AM
Incrementing a counter in the database - by El Forum - 05-29-2009, 07:21 AM
Incrementing a counter in the database - by El Forum - 05-29-2009, 07:28 AM
Incrementing a counter in the database - by El Forum - 05-29-2009, 07:32 AM
Incrementing a counter in the database - by El Forum - 05-29-2009, 07:35 AM
Incrementing a counter in the database - by El Forum - 05-30-2009, 11:29 AM



Theme © iAndrew 2016 - Forum software by © MyBB