|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.torque.util.CountHelper
public class CountHelper
Counts entries matching a criteria.
Constructor Summary | |
---|---|
CountHelper()
|
Method Summary | |
---|---|
int |
count(Criteria c)
Deprecated. use org.apache.torque.criteria.Criteria instead of org.apache.torque.util.Criteria. This method will be removed in Torque 4.1. |
int |
count(Criteria c)
The COUNT function returns the number of rows in a query. |
int |
count(Criteria c,
Column column)
Deprecated. use org.apache.toraue.criteria.Criteria instead of org.apache.toraue.util.Criteria. This method will be removed in Torque 4.1. |
int |
count(Criteria c,
Column column)
Returns the number of rows in a query. |
int |
count(Criteria c,
Connection conn)
Deprecated. use org.apache.toraue.criteria.Criteria instead of org.apache.toraue.util.Criteria. This method will be removed in Torque 4.1. |
int |
count(Criteria c,
Connection conn)
The COUNT function returns the number of rows in a query. |
int |
count(Criteria c,
Connection conn,
Column column)
Deprecated. use org.apache.toraue.criteria.Criteria instead of org.apache.toraue.util.Criteria. This method will be removed in Torque 4.1. |
int |
count(Criteria c,
Connection conn,
Column column)
Returns the number of rows in a query. |
int |
count(Criteria c,
Connection conn,
String columnName,
TableMap tableMap)
Deprecated. use org.apache.toraue.criteria.Criteria instead of org.apache.toraue.util.Criteria. This method will be removed in Torque 4.1. |
int |
count(Criteria c,
Connection conn,
String columnName,
TableMap tableMap)
Returns the number of rows in a query. |
int |
count(Criteria c,
String columnName)
Deprecated. use org.apache.toraue.criteria.Criteria instead of org.apache.toraue.util.Criteria. This method will be removed in Torque 4.1. |
int |
count(Criteria c,
String columnName)
Returns the number of rows in a query. |
int |
count(TableMap tableMap)
Counts all rows in a table. |
int |
count(TableMap tableMap,
Connection conn)
Counts all rows in a table. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public CountHelper()
Method Detail |
---|
@Deprecated public int count(Criteria c) throws TorqueException
c
- Criteria to get the count for.
TorqueException
- if the query could not be executedpublic int count(Criteria c) throws TorqueException
c
- Criteria to get the count for.
TorqueException
- if the query could not be executed@Deprecated public int count(Criteria c, Connection conn) throws TorqueException
c
- Criteria to get the count for.conn
- Connection to use
TorqueException
- if the query could not be executedpublic int count(Criteria c, Connection conn) throws TorqueException
c
- Criteria to get the count for.conn
- Connection to use
TorqueException
- if the query could not be executed@Deprecated public int count(Criteria c, String columnName) throws TorqueException
c
- Criteria to get the count for.columnName
- Name of database Column which is counted. Preferably,
use the primary key here.
TorqueException
- if the query could not be executedpublic int count(Criteria c, String columnName) throws TorqueException
c
- Criteria to get the count for.columnName
- Name of database Column which is counted. Preferably,
use the primary key here.
TorqueException
- if the query could not be executed@Deprecated public int count(Criteria c, Column column) throws TorqueException
c
- Criteria to get the count for.column
- the database Column which is counted. Preferably,
use the primary key here.
TorqueException
- if the query could not be executedpublic int count(Criteria c, Column column) throws TorqueException
c
- Criteria to get the count for.column
- the database Column which is counted. Preferably,
use the primary key here.
TorqueException
- if the query could not be executed@Deprecated public int count(Criteria c, Connection conn, Column column) throws TorqueException
c
- Criteria to get the count for.conn
- Connection to usecolumn
- The database Column which is counted. Preferably,
use the primary key here.
TorqueException
- if the query could not be executedpublic int count(Criteria c, Connection conn, Column column) throws TorqueException
c
- Criteria to get the count for.conn
- Connection to usecolumn
- The database Column which is counted. Preferably,
use the primary key here.
TorqueException
- if the query could not be executedpublic int count(TableMap tableMap) throws TorqueException
tableMap
- the table map of the table to count rows in.
TorqueException
- if the query could not be executedpublic int count(TableMap tableMap, Connection conn) throws TorqueException
tableMap
- the table map of the table to count rows in.conn
- the connection to use.
TorqueException
- if the query could not be executed@Deprecated public int count(Criteria c, Connection conn, String columnName, TableMap tableMap) throws TorqueException
c
- Criteria to get the count for.conn
- Connection to usecolumnName
- Name of database Column which is counted. Preferably,
use the primary key here.tableMap
- the table to count the columns in, or null to determine
the table automatically from the criteria.
TorqueException
- if the query could not be executed.public int count(Criteria c, Connection conn, String columnName, TableMap tableMap) throws TorqueException
c
- Criteria to get the count for.conn
- Connection to usecolumnName
- Name of database Column which is counted. Preferably,
use the primary key here.tableMap
- the table to count the columns in, or null to determine
the table automatically from the criteria.
TorqueException
- if the query could not be executed.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |