Changeset 6463 for trunk/include
- Timestamp:
- Jun 4, 2010, 9:36:56 PM (14 years ago)
- Location:
- trunk/include/dblayer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/dblayer/functions_pdo-sqlite.inc.php
r6339 r6463 47 47 48 48 $link->sqliteCreateFunction('now', 'pwg_now', 0); 49 $link->sqliteCreateFunction('hour', 'pwg_hour', 1); 49 50 $link->sqliteCreateFunction('unix_timestamp', 'pwg_unix_timestamp', 0); 50 51 $link->sqliteCreateFunction('md5', 'md5', 1); … … 571 572 } 572 573 574 function pwg_hour($datetime) 575 { 576 return strftime('%H', $datetime); 577 } 578 573 579 function pwg_unix_timestamp() 574 580 { -
trunk/include/dblayer/functions_sqlite.inc.php
r6339 r6463 56 56 57 57 $link->createFunction('now', 'pwg_now', 0); 58 $link->createFunction('hour', 'pwg_hour', 1); 58 59 $link->createFunction('unix_timestamp', 'pwg_unix_timestamp', 0); 59 60 $link->createFunction('md5', 'md5', 1); … … 583 584 } 584 585 586 function pwg_hour($datetime) 587 { 588 return strftime('%H', $datetime); 589 } 590 585 591 function pwg_unix_timestamp() 586 592 {
Note: See TracChangeset
for help on using the changeset viewer.