This is driving me a little crazy...
I have a field that is a simple varchar(14). 14 obvious being for "YmdHis" date/time information. I only want this field to update when I tell it to update...
So, everytime I hit the database the udate field updates with now() automatically (it's a timestamp field). However, it's controlling the cdate field (explained above). No matter what I do I can't get a query to update this field - udate has control.
I've tested the query and it does work on other fields...but I've completely lost control of this cdate field. I don't understand how another field could do this...
This is how simple the query is...
$db->updateRecord("UPDATE ".TABLE." SET cdate = '' WHERE id = '$id'");
I could insert something between the quotes or use NULL but nothing will work...
Anybody seen this before? Have I designed my udate field improperly?