Changeset 1011 for branches/1.3/runtime/classes/propel/adapter
- Timestamp:
- 03/20/08 11:36:27 (9 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.3/runtime/classes/propel/adapter/DBAdapter.php
r989 r1011 286 286 * @deprecated 287 287 */ 288 public function useQuoteIdentifier() { 288 public function useQuoteIdentifier() 289 { 289 290 return false; 290 291 } … … 294 295 */ 295 296 public abstract function applyLimit(&$sql, $offset, $limit); 296 297 public abstract function random($seed=NULL); 297 298 /** 299 * Gets the SQL string that this adapter uses for getting a random number. 300 * 301 * @param mixed $seed (optional) seed value for databases that support this 302 */ 303 public abstract function random($seed = null); 298 304 299 305 } branches/1.3/runtime/classes/propel/adapter/DBPostgres.php
r563 r1011 142 142 } 143 143 } 144 144 145 /** 146 * @see DBAdapter::random() 147 */ 145 148 public function random($seed=NULL) 146 149 {
