Source for file BaseEtvaAgentPeer.php
Documentation is available at BaseEtvaAgentPeer.php
* Base static class for performing query and update operations on the 'agent' table.
* This class was autogenerated by Propel 1.3.0-dev on:
* Thu Jun 18 14:28:37 2009
/** the default database name for this class */
const DATABASE_NAME = 'propel';
/** the table name for this class */
const TABLE_NAME = 'agent';
/** A class that can be returned by this peer. */
const CLASS_DEFAULT = 'lib.model.EtvaAgent';
/** The total number of columns. */
/** The number of lazy-loaded columns. */
const NUM_LAZY_LOAD_COLUMNS = 0;
/** the column name for the ID field */
/** the column name for the SERVER_ID field */
const SERVER_ID = 'agent.SERVER_ID';
/** the column name for the NAME field */
const NAME = 'agent.NAME';
/** the column name for the DESCRIPTION field */
const DESCRIPTION = 'agent.DESCRIPTION';
/** the column name for the SERVICE field */
const SERVICE = 'agent.SERVICE';
/** the column name for the IP field */
/** the column name for the STATE field */
const STATE = 'agent.STATE';
/** the column name for the CREATED_AT field */
const CREATED_AT = 'agent.CREATED_AT';
/** the column name for the UPDATED_AT field */
const UPDATED_AT = 'agent.UPDATED_AT';
* An identiy map to hold any loaded instances of EtvaAgent objects.
* This must be public so that other peer classes can access this when hydrating from JOIN
public static $instances = array();
* The MapBuilder instance for this peer.
private static $mapBuilder = null;
* holds an array of fieldnames
* first dimension keys are the type constants
* e.g. self::$fieldNames[self::TYPE_PHPNAME][0] = 'Id'
private static $fieldNames = array (
BasePeer::TYPE_PHPNAME => array ('Id', 'ServerId', 'Name', 'Description', 'Service', 'Ip', 'State', 'CreatedAt', 'UpdatedAt', ),
BasePeer::TYPE_STUDLYPHPNAME => array ('id', 'serverId', 'name', 'description', 'service', 'ip', 'state', 'createdAt', 'updatedAt', ),
BasePeer::TYPE_COLNAME => array (self::ID, self::SERVER_ID, self::NAME, self::DESCRIPTION, self::SERVICE, self::IP, self::STATE, self::CREATED_AT, self::UPDATED_AT, ),
BasePeer::TYPE_FIELDNAME => array ('id', 'server_id', 'name', 'description', 'service', 'ip', 'state', 'created_at', 'updated_at', ),
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, )
* holds an array of keys for quick access to the fieldnames array
* first dimension keys are the type constants
* e.g. self::$fieldNames[BasePeer::TYPE_PHPNAME]['Id'] = 0
private static $fieldKeys = array (
BasePeer::TYPE_PHPNAME => array ('Id' => 0, 'ServerId' => 1, 'Name' => 2, 'Description' => 3, 'Service' => 4, 'Ip' => 5, 'State' => 6, 'CreatedAt' => 7, 'UpdatedAt' => 8, ),
BasePeer::TYPE_STUDLYPHPNAME => array ('id' => 0, 'serverId' => 1, 'name' => 2, 'description' => 3, 'service' => 4, 'ip' => 5, 'state' => 6, 'createdAt' => 7, 'updatedAt' => 8, ),
BasePeer::TYPE_COLNAME => array (self::ID => 0, self::SERVER_ID => 1, self::NAME => 2, self::DESCRIPTION => 3, self::SERVICE => 4, self::IP => 5, self::STATE => 6, self::CREATED_AT => 7, self::UPDATED_AT => 8, ),
BasePeer::TYPE_FIELDNAME => array ('id' => 0, 'server_id' => 1, 'name' => 2, 'description' => 3, 'service' => 4, 'ip' => 5, 'state' => 6, 'created_at' => 7, 'updated_at' => 8, ),
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, )
* Get a (singleton) instance of the MapBuilder for this peer class.
* @return MapBuilder The map builder for this peer
if (self::$mapBuilder === null) {
self::$mapBuilder = new EtvaAgentMapBuilder();
return self::$mapBuilder;
* Translates a fieldname to another type
* @param string $name field name
* @param string $fromType One of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM
* @param string $toType One of the class type constants
* @return string translated name of the field.
* @throws PropelException - if the specified name could not be found in the fieldname mappings.
$toNames = self::getFieldNames($toType);
$key = isset (self::$fieldKeys[$fromType][$name]) ? self::$fieldKeys[$fromType][$name] : null;
throw new PropelException("'$name' could not be found in the field names of type '$fromType'. These are: " . print_r(self::$fieldKeys[$fromType], true));
* Returns an array of field names.
* @param string $type The type of fieldnames to return:
* One of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME
* BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM
* @return array A list of field names
static public function getFieldNames($type = BasePeer::TYPE_PHPNAME)
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.');
return self::$fieldNames[$type];
* Convenience method which changes table.column to alias.column.
* Using this method you can maintain SQL abstraction while using column aliases.
* $c->addAlias("alias1", TablePeer::TABLE_NAME);
* $c->addJoin(TablePeer::alias("alias1", TablePeer::PRIMARY_KEY_COLUMN), TablePeer::PRIMARY_KEY_COLUMN);
* @param string $alias The alias for the current table.
* @param string $column The column name for current table. (i.e. EtvaAgentPeer::COLUMN_NAME).
public static function alias($alias, $column)
return str_replace(EtvaAgentPeer::TABLE_NAME. '.', $alias. '.', $column);
* Add all the columns needed to create a new object.
* Note: any columns that were marked with lazyLoad="true" in the
* XML schema will not be added to the select list and only loaded
* @param criteria object containing the columns to add.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
* Returns the number of rows matching criteria.
* @param Criteria $criteria
* @param boolean $distinct Whether to select only distinct columns; deprecated: use Criteria->setDistinct() instead.
* @return int Number of matching rows.
public static function doCount(Criteria $criteria, $distinct = false, PropelPDO $con = null)
// we may modify criteria, so copy it first
$criteria = clone $criteria;
// We need to set the primary table name, since in the case that there are no WHERE columns
// it will be impossible for the BasePeer::createSelectSql() method to determine which
// tables go into the FROM clause.
if ($distinct && !in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
$criteria->setDistinct();
if (!$criteria->hasSelectClause()) {
$criteria->clearOrderByColumns(); // ORDER BY won't ever affect the count
$criteria->setDbName(self::DATABASE_NAME); // Set the correct dbName
$con = Propel::getConnection(EtvaAgentPeer::DATABASE_NAME, Propel::CONNECTION_READ);
foreach (sfMixer::getCallables('BaseEtvaAgentPeer:doCount:doCount') as $callable)
// BasePeer returns a PDOStatement
$stmt = BasePeer::doCount($criteria, $con);
if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$count = 0; // no rows returned; we infer that means 0 matches.
* Method to select one object from the DB.
* @param Criteria $criteria object used to create the SELECT statement.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
public static function doSelectOne(Criteria $criteria, PropelPDO $con = null)
$critcopy = clone $criteria;
* @param Criteria $criteria The Criteria object used to build the SELECT statement.
* @return array Array of selected Objects
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
public static function doSelect(Criteria $criteria, PropelPDO $con = null)
* Prepares the Criteria object and uses the parent doSelect() method to execute a PDOStatement.
* Use this method directly if you want to work with an executed statement durirectly (for example
* to perform your own object hydration).
* @param Criteria $criteria The Criteria object used to build the SELECT statement.
* @param PropelPDO $con The connection to use
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
* @return PDOStatement The executed PDOStatement object.
* @see BasePeer::doSelect()
public static function doSelectStmt(Criteria $criteria, PropelPDO $con = null)
foreach (sfMixer::getCallables('BaseEtvaAgentPeer:doSelectStmt:doSelectStmt') as $callable)
$con = Propel::getConnection(EtvaAgentPeer::DATABASE_NAME, Propel::CONNECTION_READ);
if (!$criteria->hasSelectClause()) {
$criteria = clone $criteria;
// Set the correct dbName
$criteria->setDbName(self::DATABASE_NAME);
// BasePeer returns a PDOStatement
return BasePeer::doSelect($criteria, $con);
* Adds an object to the instance pool.
* Propel keeps cached copies of objects in an instance pool when they are retrieved
* from the database. In some cases -- especially when you override doSelect*()
* methods in your stub classes -- you may need to explicitly add objects
* to the cache in order to ensure that the same objects are always returned by doSelect*()
* and retrieveByPK*() calls.
* @param EtvaAgent $value A EtvaAgent object.
* @param string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
if (Propel::isInstancePoolingEnabled()) {
$key = (string) $obj->getId();
self::$instances[$key] = $obj;
* Removes an object from the instance pool.
* Propel keeps cached copies of objects in an instance pool when they are retrieved
* from the database. In some cases -- especially when you override doDelete
* methods in your stub classes -- you may need to explicitly remove objects
* from the cache in order to prevent returning objects that no longer exist.
* @param mixed $value A EtvaAgent object or a primary key value.
if (Propel::isInstancePoolingEnabled() && $value !== null) {
$key = (string) $value->getId();
// assume we've been passed a primary key
$e = new PropelException("Invalid value passed to removeInstanceFromPool(). Expected primary key or EtvaAgent object; got " . (is_object($value) ? get_class($value) . ' object.' : var_export($value,true)));
unset (self::$instances[$key]);
} // removeInstanceFromPool()
* 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.
* For tables with a single-column primary key, that simple pkey value will be returned. For tables with
* a multi-column primary key, a serialize()d version of the primary key will be returned.
* @param string $key The key (@see getPrimaryKeyHash()) for this instance.
* @return EtvaAgent Found object or NULL if 1) no instance exists for specified key or 2) instance pooling has been disabled.
* @see getPrimaryKeyHash()
if (Propel::isInstancePoolingEnabled()) {
if (isset (self::$instances[$key])) {
return self::$instances[$key];
return null; // just to be explicit
* Clear the instance pool.
self::$instances = array();
* 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.
* For tables with a single-column primary key, that simple pkey value will be returned. For tables with
* a multi-column primary key, a serialize()d version of the primary key will be returned.
* @param array $row PropelPDO resultset row.
* @param int $startcol The 0-based offset for reading from the resultset row.
* @return string A string version of PK or NULL if the components of primary key in result array are all null.
// If the PK cannot be derived from the row, return NULL.
if ($row[$startcol + 0] === null) {
return (string) $row[$startcol + 0];
* The returned array will contain objects of the default type or
* objects that inherit from the default.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
// set the class once to avoid overhead in the loop
// populate the object(s)
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
if (null !== ($obj = EtvaAgentPeer::getInstanceFromPool($key))) {
// We no longer rehydrate the object, since this can cause data loss.
// See http://propel.phpdb.org/trac/ticket/509
// $obj->hydrate($row, 0, true); // rehydrate
* Returns the number of rows matching criteria, joining the related EtvaServer table
* @param boolean $distinct Whether to select only distinct columns; deprecated: use Criteria->setDistinct() instead.
* @param String $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
* @return int Number of matching rows.
public static function doCountJoinEtvaServer(Criteria $criteria, $distinct = false, PropelPDO $con = null, $join_behavior = Criteria::LEFT_JOIN)
// we're going to modify criteria, so copy it first
$criteria = clone $criteria;
// We need to set the primary table name, since in the case that there are no WHERE columns
// it will be impossible for the BasePeer::createSelectSql() method to determine which
// tables go into the FROM clause.
if ($distinct && !in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
$criteria->setDistinct();
if (!$criteria->hasSelectClause()) {
$criteria->clearOrderByColumns(); // ORDER BY won't ever affect the count
// Set the correct dbName
$criteria->setDbName(self::DATABASE_NAME);
$con = Propel::getConnection(EtvaAgentPeer::DATABASE_NAME, Propel::CONNECTION_READ);
foreach (sfMixer::getCallables('BaseEtvaAgentPeer:doCount:doCount') as $callable)
$stmt = BasePeer::doCount($criteria, $con);
if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$count = 0; // no rows returned; we infer that means 0 matches.
* Selects a collection of EtvaAgent objects pre-filled with their EtvaServer objects.
* @param String $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
* @return array Array of EtvaAgent objects.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
foreach (sfMixer::getCallables('BaseEtvaAgentPeer:doSelectJoin:doSelectJoin') as $callable)
// Set the correct dbName if it has not been overridden
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
$stmt = BasePeer::doSelect($c, $con);
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
if (null !== ($obj1 = EtvaAgentPeer::getInstanceFromPool($key1))) {
// We no longer rehydrate the object, since this can cause data loss.
// See http://propel.phpdb.org/trac/ticket/509
// $obj1->hydrate($row, 0, true); // rehydrate
} // if $obj1 already loaded
$obj2->hydrate($row, $startcol);
} // if obj2 already loaded
// Add the $obj1 (EtvaAgent) to $obj2 (EtvaServer)
$obj2->addEtvaAgent($obj1);
} // if joined row was not null
* Returns the number of rows matching criteria, joining all related tables
* @param boolean $distinct Whether to select only distinct columns; deprecated: use Criteria->setDistinct() instead.
* @param String $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
* @return int Number of matching rows.
public static function doCountJoinAll(Criteria $criteria, $distinct = false, PropelPDO $con = null, $join_behavior = Criteria::LEFT_JOIN)
// we're going to modify criteria, so copy it first
$criteria = clone $criteria;
// We need to set the primary table name, since in the case that there are no WHERE columns
// it will be impossible for the BasePeer::createSelectSql() method to determine which
// tables go into the FROM clause.
if ($distinct && !in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
$criteria->setDistinct();
if (!$criteria->hasSelectClause()) {
$criteria->clearOrderByColumns(); // ORDER BY won't ever affect the count
// Set the correct dbName
$criteria->setDbName(self::DATABASE_NAME);
$con = Propel::getConnection(EtvaAgentPeer::DATABASE_NAME, Propel::CONNECTION_READ);
foreach (sfMixer::getCallables('BaseEtvaAgentPeer:doCount:doCount') as $callable)
$stmt = BasePeer::doCount($criteria, $con);
if ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$count = 0; // no rows returned; we infer that means 0 matches.
* Selects a collection of EtvaAgent objects pre-filled with all related objects.
* @param String $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
* @return array Array of EtvaAgent objects.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
public static function doSelectJoinAll(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN)
foreach (sfMixer::getCallables('BaseEtvaAgentPeer:doSelectJoinAll:doSelectJoinAll') as $callable)
// Set the correct dbName if it has not been overridden
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
$stmt = BasePeer::doSelect($c, $con);
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
if (null !== ($obj1 = EtvaAgentPeer::getInstanceFromPool($key1))) {
// We no longer rehydrate the object, since this can cause data loss.
// See http://propel.phpdb.org/trac/ticket/509
// $obj1->hydrate($row, 0, true); // rehydrate
} // if obj1 already loaded
// Add objects for joined EtvaServer rows
$obj2->hydrate($row, $startcol2);
// Add the $obj1 (EtvaAgent) to the collection in $obj2 (EtvaServer)
$obj2->addEtvaAgent($obj1);
} // if joined row not null
* Returns the TableMap related to this peer.
* This method is not needed for general use but a specific application could have a need.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
return Propel::getDatabaseMap(self::DATABASE_NAME)->getTable(self::TABLE_NAME);
* The class that the Peer will make instances of.
* This uses a dot-path notation which is tranalted into a path
* relative to a location on the PHP include_path.
* (e.g. path.to.MyClass -> 'path/to/MyClass.php')
* @return string path.to.ClassName
* Method perform an INSERT on the database, given a EtvaAgent or Criteria object.
* @param mixed $values Criteria or EtvaAgent object containing data that is used to create the INSERT statement.
* @param PropelPDO $con the PropelPDO connection to use
* @return mixed The new primary key.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
public static function doInsert($values, PropelPDO $con = null)
foreach (sfMixer::getCallables('BaseEtvaAgentPeer:doInsert:pre') as $callable)
$con = Propel::getConnection(EtvaAgentPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
if ($values instanceof Criteria) {
$criteria = clone $values; // rename for clarity
$criteria = $values->buildCriteria(); // build Criteria from EtvaAgent object
throw new PropelException('Cannot insert a value for auto-increment primary key ('. EtvaAgentPeer::ID. ')');
// Set the correct dbName
$criteria->setDbName(self::DATABASE_NAME);
// use transaction because $criteria could contain info
// for more than one table (I guess, conceivably)
$con->beginTransaction();
$pk = BasePeer::doInsert($criteria, $con);
} catch (PropelException $e) {
foreach (sfMixer::getCallables('BaseEtvaAgentPeer:doInsert:post') as $callable)
* Method perform an UPDATE on the database, given a EtvaAgent or Criteria object.
* @param mixed $values Criteria or EtvaAgent object containing data that is used to create the UPDATE statement.
* @param PropelPDO $con The connection to use (specify PropelPDO connection object to exert more control over transactions).
* @return int The number of affected rows (if supported by underlying database driver).
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
public static function doUpdate($values, PropelPDO $con = null)
foreach (sfMixer::getCallables('BaseEtvaAgentPeer:doUpdate:pre') as $callable)
$con = Propel::getConnection(EtvaAgentPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
$selectCriteria = new Criteria(self::DATABASE_NAME);
if ($values instanceof Criteria) {
$criteria = clone $values; // rename for clarity
} else { // $values is EtvaAgent object
$criteria = $values->buildCriteria(); // gets full criteria
$selectCriteria = $values->buildPkeyCriteria(); // gets criteria w/ primary key(s)
// set the correct dbName
$criteria->setDbName(self::DATABASE_NAME);
$ret = BasePeer::doUpdate($selectCriteria, $criteria, $con);
foreach (sfMixer::getCallables('BaseEtvaAgentPeer:doUpdate:post') as $callable)
* Method to DELETE all rows from the agent table.
* @return int The number of affected rows (if supported by underlying database driver).
$con = Propel::getConnection(EtvaAgentPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
$affectedRows = 0; // initialize var to track total num of affected rows
// use transaction because $criteria could contain info
// for more than one table or we could emulating ON DELETE CASCADE, etc.
$con->beginTransaction();
$affectedRows += BasePeer::doDeleteAll(EtvaAgentPeer::TABLE_NAME, $con);
} catch (PropelException $e) {
* Method perform a DELETE on the database, given a EtvaAgent or Criteria object OR a primary key value.
* @param mixed $values Criteria or EtvaAgent object or primary key or array of primary keys
* which is used to create the DELETE statement
* @param PropelPDO $con the connection to use
* @return int The number of affected rows (if supported by underlying database driver). This includes CASCADE-related rows
* if supported by native driver or if emulated using Propel.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
public static function doDelete($values, PropelPDO $con = null)
$con = Propel::getConnection(EtvaAgentPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
if ($values instanceof Criteria) {
// invalidate the cache for all objects of this type, since we have no
// way of knowing (without running a query) what objects should be invalidated
// from the cache based on this Criteria.
$criteria = clone $values;
// invalidate the cache for this single object
// create criteria based on pk values
$criteria = $values->buildPkeyCriteria();
// it must be the primary key
$criteria = new Criteria(self::DATABASE_NAME);
$criteria->add(EtvaAgentPeer::ID, (array) $values, Criteria::IN);
foreach ((array) $values as $singleval) {
// we can invalidate the cache for this single object
// Set the correct dbName
$criteria->setDbName(self::DATABASE_NAME);
$affectedRows = 0; // initialize var to track total num of affected rows
// use transaction because $criteria could contain info
// for more than one table or we could emulating ON DELETE CASCADE, etc.
$con->beginTransaction();
$affectedRows += BasePeer::doDelete($criteria, $con);
} catch (PropelException $e) {
* Validates all modified columns of given EtvaAgent object.
* If parameter $columns is either a single column name or an array of column names
* than only those columns are validated.
* NOTICE: This does not apply to primary or foreign keys for now.
* @param EtvaAgent $obj The object to validate.
* @param mixed $cols Column name or array of column names.
* @return mixed TRUE if all columns are valid or the error message of the first invalid column.
public static function doValidate(EtvaAgent $obj, $cols = null)
foreach ($cols as $colName) {
if ($tableMap->containsColumn($colName)) {
$get = 'get' . $tableMap->getColumn($colName)->getPhpName();
$columns[$colName] = $obj->$get();
$request = sfContext::getInstance()->getRequest();
foreach ($res as $failed) {
$col = EtvaAgentPeer::translateFieldname($failed->getColumn(), BasePeer::TYPE_COLNAME, BasePeer::TYPE_PHPNAME);
* Retrieve a single object by pkey.
* @param int $pk the primary key.
* @param PropelPDO $con the connection to use
public static function retrieveByPK($pk, PropelPDO $con = null)
if (null !== ($obj = EtvaAgentPeer::getInstanceFromPool((string) $pk))) {
$con = Propel::getConnection(EtvaAgentPeer::DATABASE_NAME, Propel::CONNECTION_READ);
return !empty($v) > 0 ? $v[0] : null;
* Retrieve multiple objects by pkey.
* @param array $pks List of primary keys
* @param PropelPDO $con the connection to use
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
public static function retrieveByPKs($pks, PropelPDO $con = null)
$con = Propel::getConnection(EtvaAgentPeer::DATABASE_NAME, Propel::CONNECTION_READ);
// This is the static code needed to register the MapBuilder for this table with the main Propel class.
// NOTE: This static code cannot call methods on the EtvaAgentPeer class, because it is not defined yet.
// If you need to use overridden methods, you can add this code to the bottom of the EtvaAgentPeer class:
// Propel::getDatabaseMap(EtvaAgentPeer::DATABASE_NAME)->addTableBuilder(EtvaAgentPeer::TABLE_NAME, EtvaAgentPeer::getMapBuilder());
// Doing so will effectively overwrite the registration below.
|