class CurrencyI18nQuery extends CurrencyI18nQuery

Skeleton subclass for performing query and update operations on the 'currency_i18n' table.

You should add additional methods to this class to meet the application requirements. This class will only be generated as long as it does not already exist in the output directory.

Methods

__construct( string $dbName = 'thelia', string $modelName = '\\Thelia\\Model\\CurrencyI18n', string $modelAlias = null)

Initializes internal state of \Thelia\Model\Base\CurrencyI18nQuery object.

create( string $modelAlias = null, Criteria $criteria = null)

Returns a new ChildCurrencyI18nQuery object.

CurrencyI18n|array|mixed
findPk($key, $con = null)

Find object by primary key.

ObjectCollection|array|mixed
findPks( array $keys, ConnectionInterface $con = null)

Find objects by primary key $objs = $c->findPks(array(array(12, 56), array(832, 123), array(123, 456)), $con);

filterByPrimaryKey( mixed $key)

Filter the query by primary key

filterByPrimaryKeys( array $keys)

Filter the query by a list of primary keys

filterById( mixed $id = null, string $comparison = null)

Filter the query on the id column

filterByLocale( string $locale = null, string $comparison = null)

Filter the query on the locale column

filterByName( string $name = null, string $comparison = null)

Filter the query on the name column

filterByCurrency( Currency|ObjectCollection $currency, string $comparison = null)

Filter the query by a related \Thelia\Model\Currency object

joinCurrency( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Adds a JOIN clause to the query using the Currency relation

useCurrencyQuery( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Use the Currency relation Currency object

prune( CurrencyI18n $currencyI18n = null)

Exclude object from result

int
doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the currency_i18n table.

int
delete( ConnectionInterface $con = null)

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

ChildCurrencyI18nQuery
orderById($order = Criteria::ASC)

Order by the id column

ChildCurrencyI18nQuery
orderByLocale($order = Criteria::ASC)

Order by the locale column

ChildCurrencyI18nQuery
orderByName($order = Criteria::ASC)

Order by the name column

ChildCurrencyI18nQuery
groupById()

Group by the id column

ChildCurrencyI18nQuery
groupByLocale()

Group by the locale column

ChildCurrencyI18nQuery
groupByName()

Group by the name column

ChildCurrencyI18nQuery
leftJoin($relation)

Adds a LEFT JOIN clause to the query

ChildCurrencyI18nQuery
rightJoin($relation)

Adds a RIGHT JOIN clause to the query

ChildCurrencyI18nQuery
innerJoin($relation)

Adds a INNER JOIN clause to the query

ChildCurrencyI18nQuery
leftJoinCurrency($relationAlias = null)

Adds a LEFT JOIN clause to the query using the Currency relation

ChildCurrencyI18nQuery
rightJoinCurrency($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the Currency relation

ChildCurrencyI18nQuery
innerJoinCurrency($relationAlias = null)

Adds a INNER JOIN clause to the query using the Currency relation

ChildCurrencyI18n
findOne( ConnectionInterface $con = null)

Return the first ChildCurrencyI18n matching the query

ChildCurrencyI18n
findOneOrCreate( ConnectionInterface $con = null)

Return the first ChildCurrencyI18n matching the query, or a new ChildCurrencyI18n object populated from the query conditions when no match is found

ChildCurrencyI18n
findOneById( int $id)

Return the first ChildCurrencyI18n filtered by the id column

ChildCurrencyI18n
findOneByLocale( string $locale)

Return the first ChildCurrencyI18n filtered by the locale column

ChildCurrencyI18n
findOneByName( string $name)

Return the first ChildCurrencyI18n filtered by the name column

array
findById( int $id)

Return ChildCurrencyI18n objects filtered by the id column

array
findByLocale( string $locale)

Return ChildCurrencyI18n objects filtered by the locale column

array
findByName( string $name)

Return ChildCurrencyI18n objects filtered by the name column

Details

in CurrencyI18nQuery at line 62
__construct( string $dbName = 'thelia', string $modelName = '\\Thelia\\Model\\CurrencyI18n', string $modelAlias = null)

Initializes internal state of \Thelia\Model\Base\CurrencyI18nQuery object.

Parameters

string $dbName The database name
string $modelName The phpName of a model, e.g. 'Book'
string $modelAlias The alias for the model in this query, e.g. 'b'

in CurrencyI18nQuery at line 75
static CurrencyI18nQuery create( string $modelAlias = null, Criteria $criteria = null)

Returns a new ChildCurrencyI18nQuery object.

Parameters

string $modelAlias The alias of a model in the query
Criteria $criteria Optional Criteria to build the query from

Return Value

CurrencyI18nQuery

in CurrencyI18nQuery at line 105
CurrencyI18n|array|mixed findPk($key, $con = null)

Find object by primary key.

Propel uses the instance pool to skip the database if the object exists. Go fast if the query is untouched.

$obj = $c->findPk(array(12, 34), $con);

Parameters

$key
$con

Return Value

CurrencyI18n|array|mixed the result, formatted by the current formatter

in CurrencyI18nQuery at line 188
ObjectCollection|array|mixed findPks( array $keys, ConnectionInterface $con = null)

Find objects by primary key $objs = $c->findPks(array(array(12, 56), array(832, 123), array(123, 456)), $con);

Parameters

array $keys Primary keys to use for the query
ConnectionInterface $con an optional connection object

Return Value

ObjectCollection|array|mixed the list of results, formatted by the current formatter

in CurrencyI18nQuery at line 209
CurrencyI18nQuery filterByPrimaryKey( mixed $key)

Filter the query by primary key

Parameters

mixed $key Primary key to use for the query

Return Value

CurrencyI18nQuery The current query, for fluid interface

in CurrencyI18nQuery at line 224
CurrencyI18nQuery filterByPrimaryKeys( array $keys)

Filter the query by a list of primary keys

Parameters

array $keys The list of primary key to use for the query

Return Value

CurrencyI18nQuery The current query, for fluid interface

in CurrencyI18nQuery at line 259
CurrencyI18nQuery filterById( mixed $id = null, string $comparison = null)

Filter the query on the id column

Example usage: $query->filterById(1234); // WHERE id = 1234 $query->filterById(array(12, 34)); // WHERE id IN (12, 34) $query->filterById(array('min' => 12)); // WHERE id > 12

Parameters

mixed $id The value to use as filter. Use scalar values for equality. Use array values for in_array() equivalent. Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

CurrencyI18nQuery The current query, for fluid interface

See also

filterByCurrency()

in CurrencyI18nQuery at line 297
CurrencyI18nQuery filterByLocale( string $locale = null, string $comparison = null)

Filter the query on the locale column

Example usage: $query->filterByLocale('fooValue'); // WHERE locale = 'fooValue' $query->filterByLocale('%fooValue%'); // WHERE locale LIKE '%fooValue%'

Parameters

string $locale The value to use as filter. Accepts wildcards (* and % trigger a LIKE)
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

CurrencyI18nQuery The current query, for fluid interface

in CurrencyI18nQuery at line 326
CurrencyI18nQuery filterByName( string $name = null, string $comparison = null)

Filter the query on the name column

Example usage: $query->filterByName('fooValue'); // WHERE name = 'fooValue' $query->filterByName('%fooValue%'); // WHERE name LIKE '%fooValue%'

Parameters

string $name The value to use as filter. Accepts wildcards (* and % trigger a LIKE)
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

CurrencyI18nQuery The current query, for fluid interface

in CurrencyI18nQuery at line 348
CurrencyI18nQuery filterByCurrency( Currency|ObjectCollection $currency, string $comparison = null)

Filter the query by a related \Thelia\Model\Currency object

Parameters

Currency|ObjectCollection $currency The related object(s) to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

CurrencyI18nQuery The current query, for fluid interface

in CurrencyI18nQuery at line 373
CurrencyI18nQuery joinCurrency( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Adds a JOIN clause to the query using the Currency relation

Parameters

string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

CurrencyI18nQuery The current query, for fluid interface

in CurrencyI18nQuery at line 408
CurrencyQuery useCurrencyQuery( string $relationAlias = null, string $joinType = 'LEFT JOIN')

Use the Currency relation Currency object

Parameters

string $relationAlias optional alias for the relation, to be used as main alias in the secondary query
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

CurrencyQuery A secondary query class using the current class as primary query

See also

useQuery()

in CurrencyI18nQuery at line 422
CurrencyI18nQuery prune( CurrencyI18n $currencyI18n = null)

Exclude object from result

Parameters

CurrencyI18n $currencyI18n Object to remove from the list of results

Return Value

CurrencyI18nQuery The current query, for fluid interface

in CurrencyI18nQuery at line 439
int doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the currency_i18n table.

Parameters

ConnectionInterface $con the connection to use

Return Value

int The number of affected rows (if supported by underlying database driver).

in CurrencyI18nQuery at line 476
int delete( ConnectionInterface $con = null)

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

Parameters

ConnectionInterface $con

Return Value

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

PropelException Any exceptions caught during processing will be rethrown wrapped into a PropelException.

in CurrencyI18nQuery at line 52
ChildCurrencyI18nQuery orderById($order = Criteria::ASC)

Order by the id column

Parameters

$order

Return Value

ChildCurrencyI18nQuery

in CurrencyI18nQuery at line 52
ChildCurrencyI18nQuery orderByLocale($order = Criteria::ASC)

Order by the locale column

Parameters

$order

Return Value

ChildCurrencyI18nQuery

in CurrencyI18nQuery at line 52
ChildCurrencyI18nQuery orderByName($order = Criteria::ASC)

Order by the name column

Parameters

$order

Return Value

ChildCurrencyI18nQuery

in CurrencyI18nQuery at line 52
ChildCurrencyI18nQuery groupById()

Group by the id column

Return Value

ChildCurrencyI18nQuery

in CurrencyI18nQuery at line 52
ChildCurrencyI18nQuery groupByLocale()

Group by the locale column

Return Value

ChildCurrencyI18nQuery

in CurrencyI18nQuery at line 52
ChildCurrencyI18nQuery groupByName()

Group by the name column

Return Value

ChildCurrencyI18nQuery

in CurrencyI18nQuery at line 52
ChildCurrencyI18nQuery leftJoin($relation)

Adds a LEFT JOIN clause to the query

Parameters

$relation

Return Value

ChildCurrencyI18nQuery

in CurrencyI18nQuery at line 52
ChildCurrencyI18nQuery rightJoin($relation)

Adds a RIGHT JOIN clause to the query

Parameters

$relation

Return Value

ChildCurrencyI18nQuery

in CurrencyI18nQuery at line 52
ChildCurrencyI18nQuery innerJoin($relation)

Adds a INNER JOIN clause to the query

Parameters

$relation

Return Value

ChildCurrencyI18nQuery

in CurrencyI18nQuery at line 52
ChildCurrencyI18nQuery leftJoinCurrency($relationAlias = null)

Adds a LEFT JOIN clause to the query using the Currency relation

Parameters

$relationAlias

Return Value

ChildCurrencyI18nQuery

in CurrencyI18nQuery at line 52
ChildCurrencyI18nQuery rightJoinCurrency($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the Currency relation

Parameters

$relationAlias

Return Value

ChildCurrencyI18nQuery

in CurrencyI18nQuery at line 52
ChildCurrencyI18nQuery innerJoinCurrency($relationAlias = null)

Adds a INNER JOIN clause to the query using the Currency relation

Parameters

$relationAlias

Return Value

ChildCurrencyI18nQuery

in CurrencyI18nQuery at line 52
ChildCurrencyI18n findOne( ConnectionInterface $con = null)

Return the first ChildCurrencyI18n matching the query

Parameters

ConnectionInterface $con

Return Value

ChildCurrencyI18n

in CurrencyI18nQuery at line 52
ChildCurrencyI18n findOneOrCreate( ConnectionInterface $con = null)

Return the first ChildCurrencyI18n matching the query, or a new ChildCurrencyI18n object populated from the query conditions when no match is found

Parameters

ConnectionInterface $con

Return Value

ChildCurrencyI18n

in CurrencyI18nQuery at line 52
ChildCurrencyI18n findOneById( int $id)

Return the first ChildCurrencyI18n filtered by the id column

Parameters

int $id

Return Value

ChildCurrencyI18n

in CurrencyI18nQuery at line 52
ChildCurrencyI18n findOneByLocale( string $locale)

Return the first ChildCurrencyI18n filtered by the locale column

Parameters

string $locale

Return Value

ChildCurrencyI18n

in CurrencyI18nQuery at line 52
ChildCurrencyI18n findOneByName( string $name)

Return the first ChildCurrencyI18n filtered by the name column

Parameters

string $name

Return Value

ChildCurrencyI18n

in CurrencyI18nQuery at line 52
array findById( int $id)

Return ChildCurrencyI18n objects filtered by the id column

Parameters

int $id

Return Value

array

in CurrencyI18nQuery at line 52
array findByLocale( string $locale)

Return ChildCurrencyI18n objects filtered by the locale column

Parameters

string $locale

Return Value

array

in CurrencyI18nQuery at line 52
array findByName( string $name)

Return ChildCurrencyI18n objects filtered by the name column

Parameters

string $name

Return Value

array