rapila
Static Public Member Functions | Public Attributes | Static Public Attributes | Static Protected Attributes | List of all members
BaseTagInstancePeer Class Reference
Inheritance diagram for BaseTagInstancePeer:
TagInstancePeer

Static Public Member Functions

static translateFieldName ($name, $fromType, $toType)
 
static getFieldNames ($type=BasePeer::TYPE_PHPNAME)
 
static alias ($alias, $column)
 
static addSelectColumns (Criteria $criteria, $alias=null)
 
static doCount (Criteria $criteria, $distinct=false, PropelPDO $con=null)
 
static doSelectOne (Criteria $criteria, PropelPDO $con=null)
 
static doSelect (Criteria $criteria, PropelPDO $con=null)
 
static doSelectStmt (Criteria $criteria, PropelPDO $con=null)
 
static addInstanceToPool ($obj, $key=null)
 
static removeInstanceFromPool ($value)
 
static getInstanceFromPool ($key)
 
static clearInstancePool ($and_clear_all_references=false)
 
static clearRelatedInstancePool ()
 
static getPrimaryKeyHashFromRow ($row, $startcol=0)
 
static getPrimaryKeyFromRow ($row, $startcol=0)
 
static populateObjects (PDOStatement $stmt)
 
static populateObject ($row, $startcol=0)
 
static doCountJoinTag (Criteria $criteria, $distinct=false, PropelPDO $con=null, $join_behavior=Criteria::LEFT_JOIN)
 
static doCountJoinUserRelatedByCreatedBy (Criteria $criteria, $distinct=false, PropelPDO $con=null, $join_behavior=Criteria::LEFT_JOIN)
 
static doCountJoinUserRelatedByUpdatedBy (Criteria $criteria, $distinct=false, PropelPDO $con=null, $join_behavior=Criteria::LEFT_JOIN)
 
static doSelectJoinTag (Criteria $criteria, $con=null, $join_behavior=Criteria::LEFT_JOIN)
 
static doSelectJoinUserRelatedByCreatedBy (Criteria $criteria, $con=null, $join_behavior=Criteria::LEFT_JOIN)
 
static doSelectJoinUserRelatedByUpdatedBy (Criteria $criteria, $con=null, $join_behavior=Criteria::LEFT_JOIN)
 
static doCountJoinAll (Criteria $criteria, $distinct=false, PropelPDO $con=null, $join_behavior=Criteria::LEFT_JOIN)
 
static doSelectJoinAll (Criteria $criteria, $con=null, $join_behavior=Criteria::LEFT_JOIN)
 
static doCountJoinAllExceptTag (Criteria $criteria, $distinct=false, PropelPDO $con=null, $join_behavior=Criteria::LEFT_JOIN)
 
static doCountJoinAllExceptUserRelatedByCreatedBy (Criteria $criteria, $distinct=false, PropelPDO $con=null, $join_behavior=Criteria::LEFT_JOIN)
 
static doCountJoinAllExceptUserRelatedByUpdatedBy (Criteria $criteria, $distinct=false, PropelPDO $con=null, $join_behavior=Criteria::LEFT_JOIN)
 
static doSelectJoinAllExceptTag (Criteria $criteria, $con=null, $join_behavior=Criteria::LEFT_JOIN)
 
static doSelectJoinAllExceptUserRelatedByCreatedBy (Criteria $criteria, $con=null, $join_behavior=Criteria::LEFT_JOIN)
 
static doSelectJoinAllExceptUserRelatedByUpdatedBy (Criteria $criteria, $con=null, $join_behavior=Criteria::LEFT_JOIN)
 
static getTableMap ()
 
static buildTableMap ()
 
static getOMClass ($row=0, $colnum=0)
 
static doInsert ($values, PropelPDO $con=null)
 
static doUpdate ($values, PropelPDO $con=null)
 
static doDeleteAll (PropelPDO $con=null)
 
static doDelete ($values, PropelPDO $con=null)
 
static doValidate ($obj, $cols=null)
 
static retrieveByPK ($tag_id, $tagged_item_id, $model_name, PropelPDO $con=null)
 
static ignoreRights ($bIgnore=true)
 
static isIgnoringRights ()
 
static setRightsUser ($oUser=false)
 
static getRightsUser ($oUser=false)
 
static mayOperateOn ($oUser, $mObject, $sOperation)
 
static mayOperateOnOwn ($oUser, $mObject, $sOperation)
 

Public Attributes

const DATABASE_NAME = 'rapila'
 
const TABLE_NAME = 'tag_instances'
 
const OM_CLASS = 'TagInstance'
 
const TM_CLASS = 'TagInstanceTableMap'
 
const NUM_COLUMNS = 7
 
const NUM_LAZY_LOAD_COLUMNS = 0
 
const NUM_HYDRATE_COLUMNS = 7
 
const TAG_ID = 'tag_instances.tag_id'
 
const TAGGED_ITEM_ID = 'tag_instances.tagged_item_id'
 
const MODEL_NAME = 'tag_instances.model_name'
 
const CREATED_AT = 'tag_instances.created_at'
 
const UPDATED_AT = 'tag_instances.updated_at'
 
const CREATED_BY = 'tag_instances.created_by'
 
const UPDATED_BY = 'tag_instances.updated_by'
 
const DEFAULT_STRING_FORMAT = 'YAML'
 

Static Public Attributes

static $instances = array()
 

Static Protected Attributes

static $fieldNames
 
static $fieldKeys
 

Member Function Documentation

static BaseTagInstancePeer::addInstanceToPool (   $obj,
  $key = null 
)
static

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.

Parameters
TagInstance$objA TagInstance object.
string$key(optional) key to use for instance map (for performance boost if key was already calculated externally).
static BaseTagInstancePeer::addSelectColumns ( Criteria  $criteria,
  $alias = null 
)
static

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 on demand.

Parameters
Criteria$criteriaobject containing the columns to add.
string$aliasoptional table alias
Exceptions
PropelExceptionAny exceptions caught during processing will be rethrown wrapped into a PropelException.
static BaseTagInstancePeer::alias (   $alias,
  $column 
)
static

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);

Parameters
string$aliasThe alias for the current table.
string$columnThe column name for current table. (i.e. TagInstancePeer::COLUMN_NAME).
Returns
string
static BaseTagInstancePeer::buildTableMap ( )
static

Add a TableMap instance to the database for this peer class.

static BaseTagInstancePeer::clearInstancePool (   $and_clear_all_references = false)
static

Clear the instance pool.

Returns
void
static BaseTagInstancePeer::clearRelatedInstancePool ( )
static

Method to invalidate the instance pool of all tables related to tag_instances by a foreign key with ON DELETE CASCADE

static BaseTagInstancePeer::doCount ( Criteria  $criteria,
  $distinct = false,
PropelPDO  $con = null 
)
static

Returns the number of rows matching criteria.

Parameters
Criteria$criteria
boolean$distinctWhether to select only distinct columns; deprecated: use Criteria->setDistinct() instead.
PropelPDO$con
Returns
int Number of matching rows.
static BaseTagInstancePeer::doCountJoinAll ( Criteria  $criteria,
  $distinct = false,
PropelPDO  $con = null,
  $join_behavior = Criteria::LEFT_JOIN 
)
static

Returns the number of rows matching criteria, joining all related tables

Parameters
Criteria$criteria
boolean$distinctWhether to select only distinct columns; deprecated: use Criteria->setDistinct() instead.
PropelPDO$con
String$join_behaviorthe type of joins to use, defaults to Criteria::LEFT_JOIN
Returns
int Number of matching rows.
static BaseTagInstancePeer::doCountJoinAllExceptTag ( Criteria  $criteria,
  $distinct = false,
PropelPDO  $con = null,
  $join_behavior = Criteria::LEFT_JOIN 
)
static

Returns the number of rows matching criteria, joining the related Tag table

Parameters
Criteria$criteria
boolean$distinctWhether to select only distinct columns; deprecated: use Criteria->setDistinct() instead.
PropelPDO$con
String$join_behaviorthe type of joins to use, defaults to Criteria::LEFT_JOIN
Returns
int Number of matching rows.
static BaseTagInstancePeer::doCountJoinAllExceptUserRelatedByCreatedBy ( Criteria  $criteria,
  $distinct = false,
PropelPDO  $con = null,
  $join_behavior = Criteria::LEFT_JOIN 
)
static

Returns the number of rows matching criteria, joining the related UserRelatedByCreatedBy table

Parameters
Criteria$criteria
boolean$distinctWhether to select only distinct columns; deprecated: use Criteria->setDistinct() instead.
PropelPDO$con
String$join_behaviorthe type of joins to use, defaults to Criteria::LEFT_JOIN
Returns
int Number of matching rows.
static BaseTagInstancePeer::doCountJoinAllExceptUserRelatedByUpdatedBy ( Criteria  $criteria,
  $distinct = false,
PropelPDO  $con = null,
  $join_behavior = Criteria::LEFT_JOIN 
)
static

Returns the number of rows matching criteria, joining the related UserRelatedByUpdatedBy table

Parameters
Criteria$criteria
boolean$distinctWhether to select only distinct columns; deprecated: use Criteria->setDistinct() instead.
PropelPDO$con
String$join_behaviorthe type of joins to use, defaults to Criteria::LEFT_JOIN
Returns
int Number of matching rows.
static BaseTagInstancePeer::doCountJoinTag ( Criteria  $criteria,
  $distinct = false,
PropelPDO  $con = null,
  $join_behavior = Criteria::LEFT_JOIN 
)
static

Returns the number of rows matching criteria, joining the related Tag table

Parameters
Criteria$criteria
boolean$distinctWhether to select only distinct columns; deprecated: use Criteria->setDistinct() instead.
PropelPDO$con
String$join_behaviorthe type of joins to use, defaults to Criteria::LEFT_JOIN
Returns
int Number of matching rows.
static BaseTagInstancePeer::doCountJoinUserRelatedByCreatedBy ( Criteria  $criteria,
  $distinct = false,
PropelPDO  $con = null,
  $join_behavior = Criteria::LEFT_JOIN 
)
static

Returns the number of rows matching criteria, joining the related UserRelatedByCreatedBy table

Parameters
Criteria$criteria
boolean$distinctWhether to select only distinct columns; deprecated: use Criteria->setDistinct() instead.
PropelPDO$con
String$join_behaviorthe type of joins to use, defaults to Criteria::LEFT_JOIN
Returns
int Number of matching rows.
static BaseTagInstancePeer::doCountJoinUserRelatedByUpdatedBy ( Criteria  $criteria,
  $distinct = false,
PropelPDO  $con = null,
  $join_behavior = Criteria::LEFT_JOIN 
)
static

Returns the number of rows matching criteria, joining the related UserRelatedByUpdatedBy table

Parameters
Criteria$criteria
boolean$distinctWhether to select only distinct columns; deprecated: use Criteria->setDistinct() instead.
PropelPDO$con
String$join_behaviorthe type of joins to use, defaults to Criteria::LEFT_JOIN
Returns
int Number of matching rows.
static BaseTagInstancePeer::doDelete (   $values,
PropelPDO  $con = null 
)
static

Performs a DELETE on the database, given a TagInstance or Criteria object OR a primary key value.

Parameters
mixed$valuesCriteria or TagInstance object or primary key or array of primary keys which is used to create the DELETE statement
PropelPDO$conthe connection to use
Returns
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.
Exceptions
PropelExceptionAny exceptions caught during processing will be rethrown wrapped into a PropelException.
static BaseTagInstancePeer::doDeleteAll ( PropelPDO  $con = null)
static

Deletes all rows from the tag_instances table.

Parameters
PropelPDO$conthe connection to use
Returns
int The number of affected rows (if supported by underlying database driver).
Exceptions
PropelException
static BaseTagInstancePeer::doInsert (   $values,
PropelPDO  $con = null 
)
static

Performs an INSERT on the database, given a TagInstance or Criteria object.

Parameters
mixed$valuesCriteria or TagInstance object containing data that is used to create the INSERT statement.
PropelPDO$conthe PropelPDO connection to use
Returns
mixed The new primary key.
Exceptions
PropelExceptionAny exceptions caught during processing will be rethrown wrapped into a PropelException.
static BaseTagInstancePeer::doSelect ( Criteria  $criteria,
PropelPDO  $con = null 
)
static

Selects several row from the DB.

Parameters
Criteria$criteriaThe Criteria object used to build the SELECT statement.
PropelPDO$con
Returns
array Array of selected Objects
Exceptions
PropelExceptionAny exceptions caught during processing will be rethrown wrapped into a PropelException.
static BaseTagInstancePeer::doSelectJoinAll ( Criteria  $criteria,
  $con = null,
  $join_behavior = Criteria::LEFT_JOIN 
)
static

Selects a collection of TagInstance objects pre-filled with all related objects.

Parameters
Criteria$criteria
PropelPDO$con
String$join_behaviorthe type of joins to use, defaults to Criteria::LEFT_JOIN
Returns
array Array of TagInstance objects.
Exceptions
PropelExceptionAny exceptions caught during processing will be rethrown wrapped into a PropelException.
static BaseTagInstancePeer::doSelectJoinAllExceptTag ( Criteria  $criteria,
  $con = null,
  $join_behavior = Criteria::LEFT_JOIN 
)
static

Selects a collection of TagInstance objects pre-filled with all related objects except Tag.

Parameters
Criteria$criteria
PropelPDO$con
String$join_behaviorthe type of joins to use, defaults to Criteria::LEFT_JOIN
Returns
array Array of TagInstance objects.
Exceptions
PropelExceptionAny exceptions caught during processing will be rethrown wrapped into a PropelException.
static BaseTagInstancePeer::doSelectJoinAllExceptUserRelatedByCreatedBy ( Criteria  $criteria,
  $con = null,
  $join_behavior = Criteria::LEFT_JOIN 
)
static

Selects a collection of TagInstance objects pre-filled with all related objects except UserRelatedByCreatedBy.

Parameters
Criteria$criteria
PropelPDO$con
String$join_behaviorthe type of joins to use, defaults to Criteria::LEFT_JOIN
Returns
array Array of TagInstance objects.
Exceptions
PropelExceptionAny exceptions caught during processing will be rethrown wrapped into a PropelException.
static BaseTagInstancePeer::doSelectJoinAllExceptUserRelatedByUpdatedBy ( Criteria  $criteria,
  $con = null,
  $join_behavior = Criteria::LEFT_JOIN 
)
static

Selects a collection of TagInstance objects pre-filled with all related objects except UserRelatedByUpdatedBy.

Parameters
Criteria$criteria
PropelPDO$con
String$join_behaviorthe type of joins to use, defaults to Criteria::LEFT_JOIN
Returns
array Array of TagInstance objects.
Exceptions
PropelExceptionAny exceptions caught during processing will be rethrown wrapped into a PropelException.
static BaseTagInstancePeer::doSelectJoinTag ( Criteria  $criteria,
  $con = null,
  $join_behavior = Criteria::LEFT_JOIN 
)
static

Selects a collection of TagInstance objects pre-filled with their Tag objects.

Parameters
Criteria$criteria
PropelPDO$con
String$join_behaviorthe type of joins to use, defaults to Criteria::LEFT_JOIN
Returns
array Array of TagInstance objects.
Exceptions
PropelExceptionAny exceptions caught during processing will be rethrown wrapped into a PropelException.
static BaseTagInstancePeer::doSelectJoinUserRelatedByCreatedBy ( Criteria  $criteria,
  $con = null,
  $join_behavior = Criteria::LEFT_JOIN 
)
static

Selects a collection of TagInstance objects pre-filled with their User objects.

Parameters
Criteria$criteria
PropelPDO$con
String$join_behaviorthe type of joins to use, defaults to Criteria::LEFT_JOIN
Returns
array Array of TagInstance objects.
Exceptions
PropelExceptionAny exceptions caught during processing will be rethrown wrapped into a PropelException.
static BaseTagInstancePeer::doSelectJoinUserRelatedByUpdatedBy ( Criteria  $criteria,
  $con = null,
  $join_behavior = Criteria::LEFT_JOIN 
)
static

Selects a collection of TagInstance objects pre-filled with their User objects.

Parameters
Criteria$criteria
PropelPDO$con
String$join_behaviorthe type of joins to use, defaults to Criteria::LEFT_JOIN
Returns
array Array of TagInstance objects.
Exceptions
PropelExceptionAny exceptions caught during processing will be rethrown wrapped into a PropelException.
static BaseTagInstancePeer::doSelectOne ( Criteria  $criteria,
PropelPDO  $con = null 
)
static

Selects one object from the DB.

Parameters
Criteria$criteriaobject used to create the SELECT statement.
PropelPDO$con
Returns
TagInstance
Exceptions
PropelExceptionAny exceptions caught during processing will be rethrown wrapped into a PropelException.
static BaseTagInstancePeer::doSelectStmt ( Criteria  $criteria,
PropelPDO  $con = null 
)
static

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 directly (for example to perform your own object hydration).

Parameters
Criteria$criteriaThe Criteria object used to build the SELECT statement.
PropelPDO$conThe connection to use
Exceptions
PropelExceptionAny exceptions caught during processing will be rethrown wrapped into a PropelException.
Returns
PDOStatement The executed PDOStatement object.
See also
BasePeer::doSelect()
static BaseTagInstancePeer::doUpdate (   $values,
PropelPDO  $con = null 
)
static

Performs an UPDATE on the database, given a TagInstance or Criteria object.

Parameters
mixed$valuesCriteria or TagInstance object containing data that is used to create the UPDATE statement.
PropelPDO$conThe connection to use (specify PropelPDO connection object to exert more control over transactions).
Returns
int The number of affected rows (if supported by underlying database driver).
Exceptions
PropelExceptionAny exceptions caught during processing will be rethrown wrapped into a PropelException.
static BaseTagInstancePeer::doValidate (   $obj,
  $cols = null 
)
static

Validates all modified columns of given TagInstance 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.

Parameters
TagInstance$objThe object to validate.
mixed$colsColumn name or array of column names.
Returns
mixed TRUE if all columns are valid or the error message of the first invalid column.
static BaseTagInstancePeer::getFieldNames (   $type = BasePeer::TYPE_PHPNAME)
static

Returns an array of field names.

Parameters
string$typeThe 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
Returns
array A list of field names
Exceptions
PropelException- if the type is not valid.
static BaseTagInstancePeer::getInstanceFromPool (   $key)
static

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.

Parameters
string$keyThe key (
See also
getPrimaryKeyHash()) for this instance.
Returns
TagInstance Found object or null if 1) no instance exists for specified key or 2) instance pooling has been disabled.
See also
getPrimaryKeyHash()
static BaseTagInstancePeer::getOMClass (   $row = 0,
  $colnum = 0 
)
static

The class that the Peer will make instances of.

Returns
string ClassName
static BaseTagInstancePeer::getPrimaryKeyFromRow (   $row,
  $startcol = 0 
)
static

Retrieves the primary key from the DB resultset row For tables with a single-column primary key, that simple pkey value will be returned. For tables with a multi-column primary key, an array of the primary key columns will be returned.

Parameters
array$rowPropelPDO resultset row.
int$startcolThe 0-based offset for reading from the resultset row.
Returns
mixed The primary key of the row
static BaseTagInstancePeer::getPrimaryKeyHashFromRow (   $row,
  $startcol = 0 
)
static

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.

Parameters
array$rowPropelPDO resultset row.
int$startcolThe 0-based offset for reading from the resultset row.
Returns
string A string version of PK or null if the components of primary key in result array are all null.
static BaseTagInstancePeer::getTableMap ( )
static

Returns the TableMap related to this peer. This method is not needed for general use but a specific application could have a need.

Returns
TableMap
Exceptions
PropelExceptionAny exceptions caught during processing will be rethrown wrapped into a PropelException.
static BaseTagInstancePeer::populateObject (   $row,
  $startcol = 0 
)
static

Populates an object of the default type or an object that inherit from the default.

Parameters
array$rowPropelPDO resultset row.
int$startcolThe 0-based offset for reading from the resultset row.
Exceptions
PropelExceptionAny exceptions caught during processing will be rethrown wrapped into a PropelException.
Returns
array (TagInstance object, last column rank)
static BaseTagInstancePeer::populateObjects ( PDOStatement  $stmt)
static

The returned array will contain objects of the default type or objects that inherit from the default.

Exceptions
PropelExceptionAny exceptions caught during processing will be rethrown wrapped into a PropelException.
static BaseTagInstancePeer::removeInstanceFromPool (   $value)
static

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.

Parameters
mixed$valueA TagInstance object or a primary key value.
Returns
void
Exceptions
PropelException- if the value is invalid.
static BaseTagInstancePeer::retrieveByPK (   $tag_id,
  $tagged_item_id,
  $model_name,
PropelPDO  $con = null 
)
static

Retrieve object using using composite pkey values.

Parameters
int$tag_id
int$tagged_item_id
string$model_name
PropelPDO$con
Returns
TagInstance
static BaseTagInstancePeer::translateFieldName (   $name,
  $fromType,
  $toType 
)
static

Translates a fieldname to another type

Parameters
string$namefield name
string$fromTypeOne of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM
string$toTypeOne of the class type constants
Returns
string translated name of the field.
Exceptions
PropelException- if the specified name could not be found in the fieldname mappings.

Member Data Documentation

BaseTagInstancePeer::$fieldKeys
staticprotected
Initial value:
= array (
BasePeer::TYPE_PHPNAME => array ('TagId' => 0, 'TaggedItemId' => 1, 'ModelName' => 2, 'CreatedAt' => 3, 'UpdatedAt' => 4, 'CreatedBy' => 5, 'UpdatedBy' => 6, ),
BasePeer::TYPE_STUDLYPHPNAME => array ('tagId' => 0, 'taggedItemId' => 1, 'modelName' => 2, 'createdAt' => 3, 'updatedAt' => 4, 'createdBy' => 5, 'updatedBy' => 6, ),
BasePeer::TYPE_RAW_COLNAME => array ('TAG_ID' => 0, 'TAGGED_ITEM_ID' => 1, 'MODEL_NAME' => 2, 'CREATED_AT' => 3, 'UPDATED_AT' => 4, 'CREATED_BY' => 5, 'UPDATED_BY' => 6, ),
BasePeer::TYPE_FIELDNAME => array ('tag_id' => 0, 'tagged_item_id' => 1, 'model_name' => 2, 'created_at' => 3, 'updated_at' => 4, 'created_by' => 5, 'updated_by' => 6, ),
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, )
)

holds an array of keys for quick access to the fieldnames array

first dimension keys are the type constants e.g. TagInstancePeer::$fieldNames[BasePeer::TYPE_PHPNAME]['Id'] = 0

BaseTagInstancePeer::$fieldNames
staticprotected
Initial value:
= array (
BasePeer::TYPE_PHPNAME => array ('TagId', 'TaggedItemId', 'ModelName', 'CreatedAt', 'UpdatedAt', 'CreatedBy', 'UpdatedBy', ),
BasePeer::TYPE_STUDLYPHPNAME => array ('tagId', 'taggedItemId', 'modelName', 'createdAt', 'updatedAt', 'createdBy', 'updatedBy', ),
BasePeer::TYPE_RAW_COLNAME => array ('TAG_ID', 'TAGGED_ITEM_ID', 'MODEL_NAME', 'CREATED_AT', 'UPDATED_AT', 'CREATED_BY', 'UPDATED_BY', ),
BasePeer::TYPE_FIELDNAME => array ('tag_id', 'tagged_item_id', 'model_name', 'created_at', 'updated_at', 'created_by', 'updated_by', ),
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, )
)

holds an array of fieldnames

first dimension keys are the type constants e.g. TagInstancePeer::$fieldNames[TagInstancePeer::TYPE_PHPNAME][0] = 'Id'

const BaseTagInstancePeer::CREATED_AT = 'tag_instances.created_at'

the column name for the created_at field

const BaseTagInstancePeer::CREATED_BY = 'tag_instances.created_by'

the column name for the created_by field

const BaseTagInstancePeer::DATABASE_NAME = 'rapila'

the default database name for this class

const BaseTagInstancePeer::DEFAULT_STRING_FORMAT = 'YAML'

The default string format for model objects of the related table

const BaseTagInstancePeer::MODEL_NAME = 'tag_instances.model_name'

the column name for the model_name field

const BaseTagInstancePeer::NUM_COLUMNS = 7

The total number of columns.

const BaseTagInstancePeer::NUM_HYDRATE_COLUMNS = 7

The number of columns to hydrate (NUM_COLUMNS - NUM_LAZY_LOAD_COLUMNS)

const BaseTagInstancePeer::NUM_LAZY_LOAD_COLUMNS = 0

The number of lazy-loaded columns.

const BaseTagInstancePeer::OM_CLASS = 'TagInstance'

the related Propel class for this table

const BaseTagInstancePeer::TABLE_NAME = 'tag_instances'

the table name for this class

const BaseTagInstancePeer::TAG_ID = 'tag_instances.tag_id'

the column name for the tag_id field

const BaseTagInstancePeer::TAGGED_ITEM_ID = 'tag_instances.tagged_item_id'

the column name for the tagged_item_id field

const BaseTagInstancePeer::TM_CLASS = 'TagInstanceTableMap'

the related TableMap class for this table

const BaseTagInstancePeer::UPDATED_AT = 'tag_instances.updated_at'

the column name for the updated_at field

const BaseTagInstancePeer::UPDATED_BY = 'tag_instances.updated_by'

the column name for the updated_by field


The documentation for this class was generated from the following file: