Source for file BaseEtvaVncTokensPeer.php
Documentation is available at BaseEtvaVncTokensPeer.php
* Base static class for performing query and update operations on the 'vnc_tokens' table.
* This class was autogenerated by Propel 1.3.0-dev on:
* Thu Jun 18 11:27:25 2009
/** the default database name for this class */
const DATABASE_NAME = 'propel';
/** the table name for this class */
const TABLE_NAME = 'vnc_tokens';
/** A class that can be returned by this peer. */
const CLASS_DEFAULT = 'lib.model.EtvaVncTokens';
/** The total number of columns. */
/** The number of lazy-loaded columns. */
const NUM_LAZY_LOAD_COLUMNS = 0;
/** the column name for the USERNAME field */
const USERNAME = 'vnc_tokens.USERNAME';
/** the column name for the TOKEN field */
const TOKEN = 'vnc_tokens.TOKEN';
/** the column name for the ENCTOKEN field */
const ENCTOKEN = 'vnc_tokens.ENCTOKEN';
/** the column name for the DATE field */
const DATE = 'vnc_tokens.DATE';
/** the column name for the USER_ID field */
const USER_ID = 'vnc_tokens.USER_ID';
* An identiy map to hold any loaded instances of EtvaVncTokens objects.
* This must be public so that other peer classes can access this when hydrating from JOIN
* @var array EtvaVncTokens[]
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 ('Username', 'Token', 'Enctoken', 'Date', 'UserId', ),
BasePeer::TYPE_STUDLYPHPNAME => array ('username', 'token', 'enctoken', 'date', 'userId', ),
BasePeer::TYPE_COLNAME => array (self::USERNAME, self::TOKEN, self::ENCTOKEN, self::DATE, self::USER_ID, ),
BasePeer::TYPE_FIELDNAME => array ('username', 'token', 'enctoken', 'date', 'user_id', ),
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, )
* 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 ('Username' => 0, 'Token' => 1, 'Enctoken' => 2, 'Date' => 3, 'UserId' => 4, ),
BasePeer::TYPE_STUDLYPHPNAME => array ('username' => 0, 'token' => 1, 'enctoken' => 2, 'date' => 3, 'userId' => 4, ),
BasePeer::TYPE_COLNAME => array (self::USERNAME => 0, self::TOKEN => 1, self::ENCTOKEN => 2, self::DATE => 3, self::USER_ID => 4, ),
BasePeer::TYPE_FIELDNAME => array ('username' => 0, 'token' => 1, 'enctoken' => 2, 'date' => 3, 'user_id' => 4, ),
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, )
* 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 EtvaVncTokensMapBuilder();
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. EtvaVncTokensPeer::COLUMN_NAME).
public static function alias($alias, $column)
return str_replace(EtvaVncTokensPeer::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.
$criteria->addSelectColumn(EtvaVncTokensPeer::USERNAME);
$criteria->addSelectColumn(EtvaVncTokensPeer::TOKEN);
$criteria->addSelectColumn(EtvaVncTokensPeer::ENCTOKEN);
$criteria->addSelectColumn(EtvaVncTokensPeer::DATE);
$criteria->addSelectColumn(EtvaVncTokensPeer::USER_ID);
* 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.
$criteria->setPrimaryTableName(EtvaVncTokensPeer::TABLE_NAME);
if ($distinct && !in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
$criteria->setDistinct();
if (!$criteria->hasSelectClause()) {
EtvaVncTokensPeer::addSelectColumns($criteria);
$criteria->clearOrderByColumns(); // ORDER BY won't ever affect the count
$criteria->setDbName(self::DATABASE_NAME); // Set the correct dbName
$con = Propel::getConnection(EtvaVncTokensPeer::DATABASE_NAME, Propel::CONNECTION_READ);
foreach (sfMixer::getCallables('BaseEtvaVncTokensPeer: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;
$objects = EtvaVncTokensPeer::doSelect($critcopy, $con);
* @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)
return EtvaVncTokensPeer::populateObjects(EtvaVncTokensPeer::doSelectStmt($criteria, $con));
* 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('BaseEtvaVncTokensPeer:doSelectStmt:doSelectStmt') as $callable)
$con = Propel::getConnection(EtvaVncTokensPeer::DATABASE_NAME, Propel::CONNECTION_READ);
if (!$criteria->hasSelectClause()) {
$criteria = clone $criteria;
EtvaVncTokensPeer::addSelectColumns($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 EtvaVncTokens $value A EtvaVncTokens 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->getUsername();
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 EtvaVncTokens object or a primary key value.
if (Propel::isInstancePoolingEnabled() && $value !== null) {
if (is_object($value) && $value instanceof EtvaVncTokens) {
$key = (string) $value->getUsername();
// assume we've been passed a primary key
$e = new PropelException("Invalid value passed to removeInstanceFromPool(). Expected primary key or EtvaVncTokens 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 EtvaVncTokens 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
$cls = EtvaVncTokensPeer::getOMClass();
// populate the object(s)
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key = EtvaVncTokensPeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj = EtvaVncTokensPeer::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
EtvaVncTokensPeer::addInstanceToPool($obj, $key);
* Returns the number of rows matching criteria, joining the related sfGuardUser 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 doCountJoinsfGuardUser(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.
$criteria->setPrimaryTableName(EtvaVncTokensPeer::TABLE_NAME);
if ($distinct && !in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
$criteria->setDistinct();
if (!$criteria->hasSelectClause()) {
EtvaVncTokensPeer::addSelectColumns($criteria);
$criteria->clearOrderByColumns(); // ORDER BY won't ever affect the count
// Set the correct dbName
$criteria->setDbName(self::DATABASE_NAME);
$con = Propel::getConnection(EtvaVncTokensPeer::DATABASE_NAME, Propel::CONNECTION_READ);
$criteria->addJoin(array(EtvaVncTokensPeer::USER_ID,), array(sfGuardUserPeer::ID,), $join_behavior);
foreach (sfMixer::getCallables('BaseEtvaVncTokensPeer: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 EtvaVncTokens objects pre-filled with their sfGuardUser objects.
* @param String $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
* @return array Array of EtvaVncTokens objects.
* @throws PropelException Any exceptions caught during processing will be
* rethrown wrapped into a PropelException.
foreach (sfMixer::getCallables('BaseEtvaVncTokensPeer:doSelectJoin:doSelectJoin') as $callable)
// Set the correct dbName if it has not been overridden
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
EtvaVncTokensPeer::addSelectColumns($c);
$startcol = (EtvaVncTokensPeer::NUM_COLUMNS - EtvaVncTokensPeer::NUM_LAZY_LOAD_COLUMNS);
sfGuardUserPeer::addSelectColumns($c);
$c->addJoin(array(EtvaVncTokensPeer::USER_ID,), array(sfGuardUserPeer::ID,), $join_behavior);
$stmt = BasePeer::doSelect($c, $con);
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key1 = EtvaVncTokensPeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj1 = EtvaVncTokensPeer::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
$omClass = EtvaVncTokensPeer::getOMClass();
EtvaVncTokensPeer::addInstanceToPool($obj1, $key1);
} // if $obj1 already loaded
$key2 = sfGuardUserPeer::getPrimaryKeyHashFromRow($row, $startcol);
$obj2 = sfGuardUserPeer::getInstanceFromPool($key2);
$omClass = sfGuardUserPeer::getOMClass();
$obj2->hydrate($row, $startcol);
sfGuardUserPeer::addInstanceToPool($obj2, $key2);
} // if obj2 already loaded
// Add the $obj1 (EtvaVncTokens) to $obj2 (sfGuardUser)
$obj2->addEtvaVncTokens($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.
$criteria->setPrimaryTableName(EtvaVncTokensPeer::TABLE_NAME);
if ($distinct && !in_array(Criteria::DISTINCT, $criteria->getSelectModifiers())) {
$criteria->setDistinct();
if (!$criteria->hasSelectClause()) {
EtvaVncTokensPeer::addSelectColumns($criteria);
$criteria->clearOrderByColumns(); // ORDER BY won't ever affect the count
// Set the correct dbName
$criteria->setDbName(self::DATABASE_NAME);
$con = Propel::getConnection(EtvaVncTokensPeer::DATABASE_NAME, Propel::CONNECTION_READ);
$criteria->addJoin(array(EtvaVncTokensPeer::USER_ID,), array(sfGuardUserPeer::ID,), $join_behavior);
foreach (sfMixer::getCallables('BaseEtvaVncTokensPeer: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 EtvaVncTokens 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 EtvaVncTokens 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('BaseEtvaVncTokensPeer:doSelectJoinAll:doSelectJoinAll') as $callable)
// Set the correct dbName if it has not been overridden
if ($c->getDbName() == Propel::getDefaultDB()) {
$c->setDbName(self::DATABASE_NAME);
EtvaVncTokensPeer::addSelectColumns($c);
$startcol2 = (EtvaVncTokensPeer::NUM_COLUMNS - EtvaVncTokensPeer::NUM_LAZY_LOAD_COLUMNS);
sfGuardUserPeer::addSelectColumns($c);
$startcol3 = $startcol2 + (sfGuardUserPeer::NUM_COLUMNS - sfGuardUserPeer::NUM_LAZY_LOAD_COLUMNS);
$c->addJoin(array(EtvaVncTokensPeer::USER_ID,), array(sfGuardUserPeer::ID,), $join_behavior);
$stmt = BasePeer::doSelect($c, $con);
while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
$key1 = EtvaVncTokensPeer::getPrimaryKeyHashFromRow($row, 0);
if (null !== ($obj1 = EtvaVncTokensPeer::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
$omClass = EtvaVncTokensPeer::getOMClass();
EtvaVncTokensPeer::addInstanceToPool($obj1, $key1);
} // if obj1 already loaded
// Add objects for joined sfGuardUser rows
$key2 = sfGuardUserPeer::getPrimaryKeyHashFromRow($row, $startcol2);
$obj2 = sfGuardUserPeer::getInstanceFromPool($key2);
$omClass = sfGuardUserPeer::getOMClass();
$obj2->hydrate($row, $startcol2);
sfGuardUserPeer::addInstanceToPool($obj2, $key2);
// Add the $obj1 (EtvaVncTokens) to the collection in $obj2 (sfGuardUser)
$obj2->addEtvaVncTokens($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
return EtvaVncTokensPeer::CLASS_DEFAULT;
* Method perform an INSERT on the database, given a EtvaVncTokens or Criteria object.
* @param mixed $values Criteria or EtvaVncTokens 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('BaseEtvaVncTokensPeer:doInsert:pre') as $callable)
$ret = call_user_func($callable, 'BaseEtvaVncTokensPeer', $values, $con);
$con = Propel::getConnection(EtvaVncTokensPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
if ($values instanceof Criteria) {
$criteria = clone $values; // rename for clarity
$criteria = $values->buildCriteria(); // build Criteria from EtvaVncTokens object
// 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('BaseEtvaVncTokensPeer:doInsert:post') as $callable)
call_user_func($callable, 'BaseEtvaVncTokensPeer', $values, $con, $pk);
* Method perform an UPDATE on the database, given a EtvaVncTokens or Criteria object.
* @param mixed $values Criteria or EtvaVncTokens 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('BaseEtvaVncTokensPeer:doUpdate:pre') as $callable)
$ret = call_user_func($callable, 'BaseEtvaVncTokensPeer', $values, $con);
$con = Propel::getConnection(EtvaVncTokensPeer::DATABASE_NAME, Propel::CONNECTION_WRITE);
$selectCriteria = new Criteria(self::DATABASE_NAME);
if ($values instanceof Criteria) {
$criteria = clone $values; // rename for clarity
$comparison = $criteria->getComparison(EtvaVncTokensPeer::USERNAME);
$selectCriteria->add(EtvaVncTokensPeer::USERNAME, $criteria->remove(EtvaVncTokensPeer::USERNAME), $comparison);
} else { // $values is EtvaVncTokens 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('BaseEtvaVncTokensPeer:doUpdate:post') as $callable)
call_user_func($callable, 'BaseEtvaVncTokensPeer', $values, $con, $ret);
* Method to DELETE all rows from the vnc_tokens table.
* @return int The number of affected rows (if supported by underlying database driver).
$con = Propel::getConnection(EtvaVncTokensPeer::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(EtvaVncTokensPeer::TABLE_NAME, $con);
} catch (PropelException $e) {
* Method perform a DELETE on the database, given a EtvaVncTokens or Criteria object OR a primary key value.
* @param mixed $values Criteria or EtvaVncTokens 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(EtvaVncTokensPeer::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.
EtvaVncTokensPeer::clearInstancePool();
$criteria = clone $values;
} elseif ($values instanceof EtvaVncTokens) {
// invalidate the cache for this single object
EtvaVncTokensPeer::removeInstanceFromPool($values);
// create criteria based on pk values
$criteria = $values->buildPkeyCriteria();
// it must be the primary key
$criteria = new Criteria(self::DATABASE_NAME);
$criteria->add(EtvaVncTokensPeer::USERNAME, (array) $values, Criteria::IN);
foreach ((array) $values as $singleval) {
// we can invalidate the cache for this single object
EtvaVncTokensPeer::removeInstanceFromPool($singleval);
// 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 EtvaVncTokens 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 EtvaVncTokens $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(EtvaVncTokens $obj, $cols = null)
$dbMap = Propel::getDatabaseMap(EtvaVncTokensPeer::DATABASE_NAME);
$tableMap = $dbMap->getTable(EtvaVncTokensPeer::TABLE_NAME);
foreach ($cols as $colName) {
if ($tableMap->containsColumn($colName)) {
$get = 'get' . $tableMap->getColumn($colName)->getPhpName();
$columns[$colName] = $obj->$get();
$res = BasePeer::doValidate(EtvaVncTokensPeer::DATABASE_NAME, EtvaVncTokensPeer::TABLE_NAME, $columns);
$request = sfContext::getInstance()->getRequest();
foreach ($res as $failed) {
$col = EtvaVncTokensPeer::translateFieldname($failed->getColumn(), BasePeer::TYPE_COLNAME, BasePeer::TYPE_PHPNAME);
* Retrieve a single object by pkey.
* @param string $pk the primary key.
* @param PropelPDO $con the connection to use
public static function retrieveByPK($pk, PropelPDO $con = null)
if (null !== ($obj = EtvaVncTokensPeer::getInstanceFromPool((string) $pk))) {
$con = Propel::getConnection(EtvaVncTokensPeer::DATABASE_NAME, Propel::CONNECTION_READ);
$criteria = new Criteria(EtvaVncTokensPeer::DATABASE_NAME);
$criteria->add(EtvaVncTokensPeer::USERNAME, $pk);
$v = EtvaVncTokensPeer::doSelect($criteria, $con);
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(EtvaVncTokensPeer::DATABASE_NAME, Propel::CONNECTION_READ);
$criteria = new Criteria(EtvaVncTokensPeer::DATABASE_NAME);
$criteria->add(EtvaVncTokensPeer::USERNAME, $pks, Criteria::IN);
$objs = EtvaVncTokensPeer::doSelect($criteria, $con);
} // BaseEtvaVncTokensPeer
// 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 EtvaVncTokensPeer class, because it is not defined yet.
// If you need to use overridden methods, you can add this code to the bottom of the EtvaVncTokensPeer class:
// Propel::getDatabaseMap(EtvaVncTokensPeer::DATABASE_NAME)->addTableBuilder(EtvaVncTokensPeer::TABLE_NAME, EtvaVncTokensPeer::getMapBuilder());
// Doing so will effectively overwrite the registration below.
|