+ function setYear($y) {
+ parent::setYear($y);
+ $this->_updateDBInfo();
+ }
+
+ function setMonth($m) {
+ parent::setMonth($m);
+ $this->_updateDBInfo();
+ }
+
+ function setDay($d) {
+ parent::setDay($d);
+ $this->_updateDBInfo();
+ }
+
+ function setHour($h) {
+ parent::setHour($h);
+ $this->_updateDBInfo();
+ }
+
+ function setMinute($m) {
+ parent::setMinute($m);
+ $this->_updateDBInfo();
+ }
+
+ function setSecond($s) {
+ parent::setSecond($s);
+ $this->_updateDBInfo();
+ }
+
+ function _updateDBInfo() {