Tagged Questions

2
votes
1answer
517 views

MySQL: add created and modified fields

What's the best approach to add created and modified fields in MySQL: 1) using MySQL features like on update CURRENT_TIMESTAMP or 2) using PHP (or something else)? Why? If the answer is MySQL, how ...
0
votes
0answers
19 views

Issue In Printing Last created tablenames

I want to list the last created tables names as list in my site.There have sql backup file of database.When iam using the below code to list names,the table names repeated more than one. This is my ...
0
votes
2answers
56 views

Kohana 3.0.4 ORM $_created_column $_updated_column

I have a problem in my model declaration, in Kohana 3.0.4 with the fields $_created_column and $_updated_column. The problem is that : - When I create and update objects from my controllers, the ...