1: <?php
2:
3: namespace Thelia\Model\om;
4:
5: use \BasePeer;
6: use \Criteria;
7: use \PDO;
8: use \PDOStatement;
9: use \Propel;
10: use \PropelException;
11: use \PropelPDO;
12: use Thelia\Model\Area;
13: use Thelia\Model\AreaPeer;
14: use Thelia\Model\CountryPeer;
15: use Thelia\Model\DelivzonePeer;
16: use Thelia\Model\map\AreaTableMap;
17:
18: /**
19: * Base static class for performing query and update operations on the 'area' table.
20: *
21: *
22: *
23: * @package propel.generator.Thelia.Model.om
24: */
25: abstract class BaseAreaPeer
26: {
27:
28: /** the default database name for this class */
29: const DATABASE_NAME = 'thelia';
30:
31: /** the table name for this class */
32: const TABLE_NAME = 'area';
33:
34: /** the related Propel class for this table */
35: const OM_CLASS = 'Thelia\\Model\\Area';
36:
37: /** the related TableMap class for this table */
38: const TM_CLASS = 'AreaTableMap';
39:
40: /** The total number of columns. */
41: const NUM_COLUMNS = 5;
42:
43: /** The number of lazy-loaded columns. */
44: const NUM_LAZY_LOAD_COLUMNS = 0;
45:
46: /** The number of columns to hydrate (NUM_COLUMNS - NUM_LAZY_LOAD_COLUMNS) */
47: const NUM_HYDRATE_COLUMNS = 5;
48:
49: /** the column name for the id field */
50: const ID = 'area.id';
51:
52: /** the column name for the name field */
53: const NAME = 'area.name';
54:
55: /** the column name for the unit field */
56: const UNIT = 'area.unit';
57:
58: /** the column name for the created_at field */
59: const CREATED_AT = 'area.created_at';
60:
61: /** the column name for the updated_at field */
62: const UPDATED_AT = 'area.updated_at';
63:
64: /** The default string format for model objects of the related table **/
65: const DEFAULT_STRING_FORMAT = 'YAML';
66:
67: /**
68: * An identiy map to hold any loaded instances of Area objects.
69: * This must be public so that other peer classes can access this when hydrating from JOIN
70: * queries.
71: * @var array Area[]
72: */
73: public static $instances = array();
74:
75:
76: /**
77: * holds an array of fieldnames
78: *
79: * first dimension keys are the type constants
80: * e.g. AreaPeer::$fieldNames[AreaPeer::TYPE_PHPNAME][0] = 'Id'
81: */
82: protected static $fieldNames = array (
83: BasePeer::TYPE_PHPNAME => array ('Id', 'Name', 'Unit', 'CreatedAt', 'UpdatedAt', ),
84: BasePeer::TYPE_STUDLYPHPNAME => array ('id', 'name', 'unit', 'createdAt', 'updatedAt', ),
85: BasePeer::TYPE_COLNAME => array (AreaPeer::ID, AreaPeer::NAME, AreaPeer::UNIT, AreaPeer::CREATED_AT, AreaPeer::UPDATED_AT, ),
86: BasePeer::TYPE_RAW_COLNAME => array ('ID', 'NAME', 'UNIT', 'CREATED_AT', 'UPDATED_AT', ),
87: BasePeer::TYPE_FIELDNAME => array ('id', 'name', 'unit', 'created_at', 'updated_at', ),
88: BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, )
89: );
90:
91: /**
92: * holds an array of keys for quick access to the fieldnames array
93: *
94: * first dimension keys are the type constants
95: * e.g. AreaPeer::$fieldNames[BasePeer::TYPE_PHPNAME]['Id'] = 0
96: */
97: protected static $fieldKeys = array (
98: BasePeer::TYPE_PHPNAME => array ('Id' => 0, 'Name' => 1, 'Unit' => 2, 'CreatedAt' => 3, 'UpdatedAt' => 4, ),
99: BasePeer::TYPE_STUDLYPHPNAME => array ('id' => 0, 'name' => 1, 'unit' => 2, 'createdAt' => 3, 'updatedAt' => 4, ),
100: BasePeer::TYPE_COLNAME => array (AreaPeer::ID => 0, AreaPeer::NAME => 1, AreaPeer::UNIT => 2, AreaPeer::CREATED_AT => 3, AreaPeer::UPDATED_AT => 4, ),
101: BasePeer::TYPE_RAW_COLNAME => array ('ID' => 0, 'NAME' => 1, 'UNIT' => 2, 'CREATED_AT' => 3, 'UPDATED_AT' => 4, ),
102: BasePeer::TYPE_FIELDNAME => array ('id' => 0, 'name' => 1, 'unit' => 2, 'created_at' => 3, 'updated_at' => 4, ),
103: BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, )
104: );
105:
106: /**
107: * Translates a fieldname to another type
108: *
109: * @param string $name field name
110: * @param string $fromType One of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME
111: * BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM
112: * @param string $toType One of the class type constants
113: * @return string translated name of the field.
114: * @throws PropelException - if the specified name could not be found in the fieldname mappings.
115: */
116: public static function translateFieldName($name, $fromType, $toType)
117: {
118: $toNames = AreaPeer::getFieldNames($toType);
119: $key = isset(AreaPeer::$fieldKeys[$fromType][$name]) ? AreaPeer::$fieldKeys[$fromType][$name] : null;
120: if ($key === null) {
121: throw new PropelException("'$name' could not be found in the field names of type '$fromType'. These are: " . print_r(AreaPeer::$fieldKeys[$fromType], true));
122: }
123:
124: return $toNames[$key];
125: }
126:
127: /**
128: * Returns an array of field names.
129: *
130: * @param string $type The type of fieldnames to return:
131: * One of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME
132: * BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM
133: * @return array A list of field names
134: * @throws PropelException - if the type is not valid.
135: */
136: public static function getFieldNames($type = BasePeer::TYPE_PHPNAME)
137: {
138: if (!array_key_exists($type, AreaPeer::$fieldNames)) {
139: throw new PropelException('Method getFieldNames() expects the parameter $type to be one of the class constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME, BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM. ' . $type . ' was given.');
140: }
141:
142: return AreaPeer::$fieldNames[$type];
143: }
144:
145: /**
146: * Convenience method which changes table.column to alias.column.
147: *
148: * Using this method you can maintain SQL abstraction while using column aliases.
149: * <code>
150: * $c->addAlias("alias1", TablePeer::TABLE_NAME);
151: * $c->addJoin(TablePeer::alias("alias1", TablePeer::PRIMARY_KEY_COLUMN), TablePeer::PRIMARY_KEY_COLUMN);
152: * </code>
153: * @param string $alias The alias for the current table.
154: * @param string $column The column name for current table. (i.e. AreaPeer::COLUMN_NAME).
155: * @return string
156: */
157: public static function alias($alias, $column)
158: {
159: return str_replace(AreaPeer::TABLE_NAME.'.', $alias.'.', $column);
160: }
161:
162: /**
163: * Add all the columns needed to create a new object.
164: *
165: * Note: any columns that were marked with lazyLoad="true" in the
166: * XML schema will not be added to the select list and only loaded
167: * on demand.
168: *
169: * @param Criteria $criteria object containing the columns to add.
170: * @param string $alias optional table alias
171: * @throws PropelException Any exceptions caught during processing will be
172: * rethrown wrapped into a PropelException.
173: */
174: public static function addSelectColumns(Criteria $criteria, $alias = null)
175: {
176: if (null === $alias) {
177: $criteria->addSelectColumn(AreaPeer::ID);
178: $criteria->addSelectColumn(AreaPeer::NAME);
179: $criteria->addSelectColumn(AreaPeer::UNIT);
180: $criteria->addSelectColumn(AreaPeer::CREATED_AT);
181: $criteria->addSelectColumn(AreaPeer::UPDATED_AT);
182: } else {
183: $criteria->addSelectColumn($alias . '.id');
184: $criteria->addSelectColumn($alias . '.name');
185: $criteria->addSelectColumn($alias . '.unit');
186: $criteria->addSelectColumn($alias . '.created_at');
187: $criteria->addSelectColumn($alias . '.updated_at');
188: }
189: }
190:
191: /**
192: * Returns the number of rows matching criteria.
193: *
194: * @param Criteria $criteria
195: * @param boolean $distinct Whether to select only distinct columns; deprecated: use Criteria->setDistinct() instead.
196: * @param PropelPDO $con
197: * @return int Number of matching rows.
198: */
199: public static function doCount(Criteria $criteria, $distinct = false, PropelPDO $con = null)
200: {
201: // we may modify criteria, so copy it first
202: $criteria = clone $criteria;
203:
204: // We need to set the primary table name, since in the case that there are no WHERE columns
205: // it will be impossible for the BasePeer::createSelectSql() method to determine which
206: // tables go into the FROM clause.
207: $criteria->setPrimaryTableName(AreaPeer::TABLE_NAME);
208:
209: if ($distinct && !in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
210: $criteria->setDistinct();
211: }
212:
213: if (!$criteria->hasSelectClause()) {
214: AreaPeer::addSelectColumns($criteria);
215: }
216:
217: $criteria->clearOrderByColumns(); // ORDER BY won't ever affect the count
218: $criteria->setDbName(AreaPeer::DATABASE_NAME); // Set the correct dbName
219:
220: if ($con === null) {
221: $con = Propel::getConnection(AreaPeer::DATABASE_NAME, Propel::CONNECTION_READ);
222: }
223: // BasePeer returns a PDOStatement
224: $stmt = BasePeer::doCount($criteria, $con);
225:
226: if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
227: $count = (int) $row[0];
228: } else {
229: $count = 0; // no rows returned; we infer that means 0 matches.
230: }
231: $stmt->closeCursor();
232:
233: return $count;
234: }
235: /**
236: * Selects one object from the DB.
237: *
238: * @param Criteria $criteria object used to create the SELECT statement.
239: * @param PropelPDO $con
240: * @return Area
241: * @throws PropelException Any exceptions caught during processing will be
242: * rethrown wrapped into a PropelException.
243: */
244: public static function doSelectOne(Criteria $criteria, PropelPDO $con = null)
245: {
246: $critcopy = clone $criteria;
247: $critcopy->setLimit(1);
248: $objects = AreaPeer::doSelect($critcopy, $con);
249: if ($objects) {
250: return $objects[0];
251: }
252:
253: return null;
254: }
255: /**
256: * Selects several row from the DB.
257: *
258: * @param Criteria $criteria The Criteria object used to build the SELECT statement.
259: * @param PropelPDO $con
260: * @return array Array of selected Objects
261: * @throws PropelException Any exceptions caught during processing will be
262: * rethrown wrapped into a PropelException.
263: */
264: public static function doSelect(Criteria $criteria, PropelPDO $con = null)
265: {
266: return AreaPeer::populateObjects(AreaPeer::doSelectStmt($criteria, $con));
267: }
268: /**
269: * Prepares the Criteria object and uses the parent doSelect() method to execute a PDOStatement.
270: *
271: * Use this method directly if you want to work with an executed statement directly (for example
272: * to perform your own object hydration).
273: *
274: * @param Criteria $criteria The Criteria object used to build the SELECT statement.
275: * @param PropelPDO $con The connection to use
276: * @throws PropelException Any exceptions caught during processing will be
277: * rethrown wrapped into a PropelException.
278: * @return PDOStatement The executed PDOStatement object.
279: * @see BasePeer::doSelect()
280: */
281: public static function doSelectStmt(Criteria $criteria, PropelPDO $con = null)
282: {
283: if ($con === null) {
284: $con = Propel::getConnection(AreaPeer::DATABASE_NAME, Propel::CONNECTION_READ);
285: }
286:
287: if (!$criteria->hasSelectClause()) {
288: $criteria = clone $criteria;
289: AreaPeer::addSelectColumns($criteria);
290: }
291:
292: // Set the correct dbName
293: $criteria->setDbName(AreaPeer::DATABASE_NAME);
294:
295: // BasePeer returns a PDOStatement
296: return BasePeer::doSelect($criteria, $con);
297: }
298: /**
299: * Adds an object to the instance pool.
300: *
301: * Propel keeps cached copies of objects in an instance pool when they are retrieved
302: * from the database. In some cases -- especially when you override doSelect*()
303: * methods in your stub classes -- you may need to explicitly add objects
304: * to the cache in order to ensure that the same objects are always returned by doSelect*()
305: * and retrieveByPK*() calls.
306: *
307: * @param Area $obj A Area object.
308: * @param string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
309: */
310: public static function addInstanceToPool($obj, $key = null)
311: {
312: if (Propel::isInstancePoolingEnabled()) {
313: if ($key === null) {
314: $key = (string) $obj->getId();
315: } // if key === null
316: AreaPeer::$instances[$key] = $obj;
317: }
318: }
319:
320: /**
321: * Removes an object from the instance pool.
322: *
323: * Propel keeps cached copies of objects in an instance pool when they are retrieved
324: * from the database. In some cases -- especially when you override doDelete
325: * methods in your stub classes -- you may need to explicitly remove objects
326: * from the cache in order to prevent returning objects that no longer exist.
327: *
328: * @param mixed $value A Area object or a primary key value.
329: *
330: * @return void
331: * @throws PropelException - if the value is invalid.
332: */
333: public static function removeInstanceFromPool($value)
334: {
335: if (Propel::isInstancePoolingEnabled() && $value !== null) {
336: if (is_object($value) && $value instanceof Area) {
337: $key = (string) $value->getId();
338: } elseif (is_scalar($value)) {
339: // assume we've been passed a primary key
340: $key = (string) $value;
341: } else {
342: $e = new PropelException("Invalid value passed to removeInstanceFromPool(). Expected primary key or Area object; got " . (is_object($value) ? get_class($value) . ' object.' : var_export($value,true)));
343: throw $e;
344: }
345:
346: unset(AreaPeer::$instances[$key]);
347: }
348: } // removeInstanceFromPool()
349:
350: /**
351: * Retrieves a string version of the primary key from the DB resultset row that can be used to uniquely identify a row in this table.
352: *
353: * For tables with a single-column primary key, that simple pkey value will be returned. For tables with
354: * a multi-column primary key, a serialize()d version of the primary key will be returned.
355: *
356: * @param string $key The key (@see getPrimaryKeyHash()) for this instance.
357: * @return Area Found object or null if 1) no instance exists for specified key or 2) instance pooling has been disabled.
358: * @see getPrimaryKeyHash()
359: */
360: public static function getInstanceFromPool($key)
361: {
362: if (Propel::isInstancePoolingEnabled()) {
363: if (isset(AreaPeer::$instances[$key])) {
364: return AreaPeer::$instances[$key];
365: }
366: }
367:
368: return null; // just to be explicit
369: }
370:
371: /**
372: * Clear the instance pool.
373: *
374: * @return void
375: */
376: public static function clearInstancePool($and_clear_all_references = false)
377: {
378: if ($and_clear_all_references)
379: {
380: foreach (AreaPeer::$instances as $instance)
381: {
382: $instance->clearAllReferences(true);
383: }
384: }
385: AreaPeer::$instances = array();
386: }
387:
388: /**
389: * Method to invalidate the instance pool of all tables related to area
390: * by a foreign key with ON DELETE CASCADE
391: */
392: public static function clearRelatedInstancePool()
393: {
394: // Invalidate objects in CountryPeer instance pool,
395: // since one or more of them may be deleted by ON DELETE CASCADE/SETNULL rule.
396: CountryPeer::clearInstancePool();
397: // Invalidate objects in DelivzonePeer instance pool,
398: // since one or more of them may be deleted by ON DELETE CASCADE/SETNULL rule.
399: DelivzonePeer::clearInstancePool();
400: }
401:
402: /**
403: * Retrieves a string version of the primary key from the DB resultset row that can be used to uniquely identify a row in this table.
404: *
405: * For tables with a single-column primary key, that simple pkey value will be returned. For tables with
406: * a multi-column primary key, a serialize()d version of the primary key will be returned.
407: *
408: * @param array $row PropelPDO resultset row.
409: * @param int $startcol The 0-based offset for reading from the resultset row.
410: * @return string A string version of PK or null if the components of primary key in result array are all null.
411: */
412: public static function getPrimaryKeyHashFromRow($row, $startcol = 0)
413: {
414: // If the PK cannot be derived from the row, return null.
415: if ($row[$startcol] === null) {
416: return null;
417: }
418:
419: return (string) $row[$startcol];
420: }
421:
422: /**
423: * Retrieves the primary key from the DB resultset row
424: * For tables with a single-column primary key, that simple pkey value will be returned. For tables with
425: * a multi-column primary key, an array of the primary key columns will be returned.
426: *
427: * @param array $row PropelPDO resultset row.
428: * @param int $startcol The 0-based offset for reading from the resultset row.
429: * @return mixed The primary key of the row
430: */
431: public static function getPrimaryKeyFromRow($row, $startcol = 0)
432: {
433:
434: return (int) $row[$startcol];
435: }
436:
437: /**
438: * The returned array will contain objects of the default type or
439: * objects that inherit from the default.
440: *
441: * @throws PropelException Any exceptions caught during processing will be
442: * rethrown wrapped into a PropelException.
443: */
444: public static function populateObjects(PDOStatement $stmt)
445: {
446: $results = array();
447:
448: // set the class once to avoid overhead in the loop
449: $cls = AreaPeer::getOMClass();
450: // populate the object(s)
451: while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
452: $key = AreaPeer::getPrimaryKeyHashFromRow($row, 0);
453: if (null !== ($obj = AreaPeer::getInstanceFromPool($key))) {
454: // We no longer rehydrate the object, since this can cause data loss.
455: // See http://www.propelorm.org/ticket/509
456: // $obj->hydrate($row, 0, true); // rehydrate
457: $results[] = $obj;
458: } else {
459: $obj = new $cls();
460: $obj->hydrate($row);
461: $results[] = $obj;
462: AreaPeer::addInstanceToPool($obj, $key);
463: } // if key exists
464: }
465: $stmt->closeCursor();
466:
467: return $results;
468: }
469: /**
470: * Populates an object of the default type or an object that inherit from the default.
471: *
472: * @param array $row PropelPDO resultset row.
473: * @param int $startcol The 0-based offset for reading from the resultset row.
474: * @throws PropelException Any exceptions caught during processing will be
475: * rethrown wrapped into a PropelException.
476: * @return array (Area object, last column rank)
477: */
478: public static function populateObject($row, $startcol = 0)
479: {
480: $key = AreaPeer::getPrimaryKeyHashFromRow($row, $startcol);
481: if (null !== ($obj = AreaPeer::getInstanceFromPool($key))) {
482: // We no longer rehydrate the object, since this can cause data loss.
483: // See http://www.propelorm.org/ticket/509
484: // $obj->hydrate($row, $startcol, true); // rehydrate
485: $col = $startcol + AreaPeer::NUM_HYDRATE_COLUMNS;
486: } else {
487: $cls = AreaPeer::OM_CLASS;
488: $obj = new $cls();
489: $col = $obj->hydrate($row, $startcol);
490: AreaPeer::addInstanceToPool($obj, $key);
491: }
492:
493: return array($obj, $col);
494: }
495:
496: /**
497: * Returns the TableMap related to this peer.
498: * This method is not needed for general use but a specific application could have a need.
499: * @return TableMap
500: * @throws PropelException Any exceptions caught during processing will be
501: * rethrown wrapped into a PropelException.
502: */
503: public static function getTableMap()
504: {
505: return Propel::getDatabaseMap(AreaPeer::DATABASE_NAME)->getTable(AreaPeer::TABLE_NAME);
506: }
507:
508: /**
509: * Add a TableMap instance to the database for this peer class.
510: */
511: public static function buildTableMap()
512: {
513: $dbMap = Propel::getDatabaseMap(BaseAreaPeer::DATABASE_NAME);
514: if (!$dbMap->hasTable(BaseAreaPeer::TABLE_NAME)) {
515: $dbMap->addTableObject(new AreaTableMap());
516: }
517: }
518:
519: /**
520: * The class that the Peer will make instances of.
521: *
522: *
523: * @return string ClassName
524: */
525: public static function getOMClass($row = 0, $colnum = 0)
526: {
527: return AreaPeer::OM_CLASS;
528: }
529:
530: /**
531: * Performs an INSERT on the database, given a Area or Criteria object.
532: *
533: * @param mixed $values Criteria or Area object containing data that is used to create the INSERT statement.
534: * @param PropelPDO $con the PropelPDO connection to use
535: * @return mixed The new primary key.
536: * @throws PropelException Any exceptions caught during processing will be
537: * rethrown wrapped into a PropelException.
538: */
539: public static function doInsert($values, PropelPDO $con = null)
540: {
541: if ($con === null) {
542: $con = Propel::getConnection(AreaPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
543: }
544:
545: if ($values instanceof Criteria) {
546: $criteria = clone $values; // rename for clarity
547: } else {
548: $criteria = $values->buildCriteria(); // build Criteria from Area object
549: }
550:
551: if ($criteria->containsKey(AreaPeer::ID) && $criteria->keyContainsValue(AreaPeer::ID) ) {
552: throw new PropelException('Cannot insert a value for auto-increment primary key ('.AreaPeer::ID.')');
553: }
554:
555:
556: // Set the correct dbName
557: $criteria->setDbName(AreaPeer::DATABASE_NAME);
558:
559: try {
560: // use transaction because $criteria could contain info
561: // for more than one table (I guess, conceivably)
562: $con->beginTransaction();
563: $pk = BasePeer::doInsert($criteria, $con);
564: $con->commit();
565: } catch (PropelException $e) {
566: $con->rollBack();
567: throw $e;
568: }
569:
570: return $pk;
571: }
572:
573: /**
574: * Performs an UPDATE on the database, given a Area or Criteria object.
575: *
576: * @param mixed $values Criteria or Area object containing data that is used to create the UPDATE statement.
577: * @param PropelPDO $con The connection to use (specify PropelPDO connection object to exert more control over transactions).
578: * @return int The number of affected rows (if supported by underlying database driver).
579: * @throws PropelException Any exceptions caught during processing will be
580: * rethrown wrapped into a PropelException.
581: */
582: public static function doUpdate($values, PropelPDO $con = null)
583: {
584: if ($con === null) {
585: $con = Propel::getConnection(AreaPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
586: }
587:
588: $selectCriteria = new Criteria(AreaPeer::DATABASE_NAME);
589:
590: if ($values instanceof Criteria) {
591: $criteria = clone $values; // rename for clarity
592:
593: $comparison = $criteria->getComparison(AreaPeer::ID);
594: $value = $criteria->remove(AreaPeer::ID);
595: if ($value) {
596: $selectCriteria->add(AreaPeer::ID, $value, $comparison);
597: } else {
598: $selectCriteria->setPrimaryTableName(AreaPeer::TABLE_NAME);
599: }
600:
601: } else { // $values is Area object
602: $criteria = $values->buildCriteria(); // gets full criteria
603: $selectCriteria = $values->buildPkeyCriteria(); // gets criteria w/ primary key(s)
604: }
605:
606: // set the correct dbName
607: $criteria->setDbName(AreaPeer::DATABASE_NAME);
608:
609: return BasePeer::doUpdate($selectCriteria, $criteria, $con);
610: }
611:
612: /**
613: * Deletes all rows from the area table.
614: *
615: * @param PropelPDO $con the connection to use
616: * @return int The number of affected rows (if supported by underlying database driver).
617: * @throws PropelException
618: */
619: public static function doDeleteAll(PropelPDO $con = null)
620: {
621: if ($con === null) {
622: $con = Propel::getConnection(AreaPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
623: }
624: $affectedRows = 0; // initialize var to track total num of affected rows
625: try {
626: // use transaction because $criteria could contain info
627: // for more than one table or we could emulating ON DELETE CASCADE, etc.
628: $con->beginTransaction();
629: $affectedRows += BasePeer::doDeleteAll(AreaPeer::TABLE_NAME, $con, AreaPeer::DATABASE_NAME);
630: // Because this db requires some delete cascade/set null emulation, we have to
631: // clear the cached instance *after* the emulation has happened (since
632: // instances get re-added by the select statement contained therein).
633: AreaPeer::clearInstancePool();
634: AreaPeer::clearRelatedInstancePool();
635: $con->commit();
636:
637: return $affectedRows;
638: } catch (PropelException $e) {
639: $con->rollBack();
640: throw $e;
641: }
642: }
643:
644: /**
645: * Performs a DELETE on the database, given a Area or Criteria object OR a primary key value.
646: *
647: * @param mixed $values Criteria or Area object or primary key or array of primary keys
648: * which is used to create the DELETE statement
649: * @param PropelPDO $con the connection to use
650: * @return int The number of affected rows (if supported by underlying database driver). This includes CASCADE-related rows
651: * if supported by native driver or if emulated using Propel.
652: * @throws PropelException Any exceptions caught during processing will be
653: * rethrown wrapped into a PropelException.
654: */
655: public static function doDelete($values, PropelPDO $con = null)
656: {
657: if ($con === null) {
658: $con = Propel::getConnection(AreaPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
659: }
660:
661: if ($values instanceof Criteria) {
662: // invalidate the cache for all objects of this type, since we have no
663: // way of knowing (without running a query) what objects should be invalidated
664: // from the cache based on this Criteria.
665: AreaPeer::clearInstancePool();
666: // rename for clarity
667: $criteria = clone $values;
668: } elseif ($values instanceof Area) { // it's a model object
669: // invalidate the cache for this single object
670: AreaPeer::removeInstanceFromPool($values);
671: // create criteria based on pk values
672: $criteria = $values->buildPkeyCriteria();
673: } else { // it's a primary key, or an array of pks
674: $criteria = new Criteria(AreaPeer::DATABASE_NAME);
675: $criteria->add(AreaPeer::ID, (array) $values, Criteria::IN);
676: // invalidate the cache for this object(s)
677: foreach ((array) $values as $singleval) {
678: AreaPeer::removeInstanceFromPool($singleval);
679: }
680: }
681:
682: // Set the correct dbName
683: $criteria->setDbName(AreaPeer::DATABASE_NAME);
684:
685: $affectedRows = 0; // initialize var to track total num of affected rows
686:
687: try {
688: // use transaction because $criteria could contain info
689: // for more than one table or we could emulating ON DELETE CASCADE, etc.
690: $con->beginTransaction();
691:
692: $affectedRows += BasePeer::doDelete($criteria, $con);
693: AreaPeer::clearRelatedInstancePool();
694: $con->commit();
695:
696: return $affectedRows;
697: } catch (PropelException $e) {
698: $con->rollBack();
699: throw $e;
700: }
701: }
702:
703: /**
704: * Validates all modified columns of given Area object.
705: * If parameter $columns is either a single column name or an array of column names
706: * than only those columns are validated.
707: *
708: * NOTICE: This does not apply to primary or foreign keys for now.
709: *
710: * @param Area $obj The object to validate.
711: * @param mixed $cols Column name or array of column names.
712: *
713: * @return mixed TRUE if all columns are valid or the error message of the first invalid column.
714: */
715: public static function doValidate($obj, $cols = null)
716: {
717: $columns = array();
718:
719: if ($cols) {
720: $dbMap = Propel::getDatabaseMap(AreaPeer::DATABASE_NAME);
721: $tableMap = $dbMap->getTable(AreaPeer::TABLE_NAME);
722:
723: if (! is_array($cols)) {
724: $cols = array($cols);
725: }
726:
727: foreach ($cols as $colName) {
728: if ($tableMap->hasColumn($colName)) {
729: $get = 'get' . $tableMap->getColumn($colName)->getPhpName();
730: $columns[$colName] = $obj->$get();
731: }
732: }
733: } else {
734:
735: }
736:
737: return BasePeer::doValidate(AreaPeer::DATABASE_NAME, AreaPeer::TABLE_NAME, $columns);
738: }
739:
740: /**
741: * Retrieve a single object by pkey.
742: *
743: * @param int $pk the primary key.
744: * @param PropelPDO $con the connection to use
745: * @return Area
746: */
747: public static function retrieveByPK($pk, PropelPDO $con = null)
748: {
749:
750: if (null !== ($obj = AreaPeer::getInstanceFromPool((string) $pk))) {
751: return $obj;
752: }
753:
754: if ($con === null) {
755: $con = Propel::getConnection(AreaPeer::DATABASE_NAME, Propel::CONNECTION_READ);
756: }
757:
758: $criteria = new Criteria(AreaPeer::DATABASE_NAME);
759: $criteria->add(AreaPeer::ID, $pk);
760:
761: $v = AreaPeer::doSelect($criteria, $con);
762:
763: return !empty($v) > 0 ? $v[0] : null;
764: }
765:
766: /**
767: * Retrieve multiple objects by pkey.
768: *
769: * @param array $pks List of primary keys
770: * @param PropelPDO $con the connection to use
771: * @return Area[]
772: * @throws PropelException Any exceptions caught during processing will be
773: * rethrown wrapped into a PropelException.
774: */
775: public static function retrieveByPKs($pks, PropelPDO $con = null)
776: {
777: if ($con === null) {
778: $con = Propel::getConnection(AreaPeer::DATABASE_NAME, Propel::CONNECTION_READ);
779: }
780:
781: $objs = null;
782: if (empty($pks)) {
783: $objs = array();
784: } else {
785: $criteria = new Criteria(AreaPeer::DATABASE_NAME);
786: $criteria->add(AreaPeer::ID, $pks, Criteria::IN);
787: $objs = AreaPeer::doSelect($criteria, $con);
788: }
789:
790: return $objs;
791: }
792:
793: } // BaseAreaPeer
794:
795: // This is the static code needed to register the TableMap for this table with the main Propel class.
796: //
797: BaseAreaPeer::buildTableMap();
798:
799: