summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/sdb/XSingleSelectQueryComposer.idl
diff options
context:
space:
mode:
authorAurimas Fišeras <aurimas@gmail.com>2011-01-25 20:17:43 +0200
committerMichael Meeks <michael.meeks@novell.com>2011-01-28 12:14:19 +0000
commit207456b80e022608e6ee63e324de9367bf9f9d70 (patch)
tree14d19312e1585c38a9fd62e62cb4eaec0cefdf7f /offapi/com/sun/star/sdb/XSingleSelectQueryComposer.idl
parent5287150cb7b37c094d43f1e3f1e38825a813540e (diff)
Some fixes to documentation (part 4)
Fixes many spelling errors (checked with en_US spell checker). Unifies spelling of some common words. Replaces single quotes ('') with double quotes (""). Fixes several other errors.
Diffstat (limited to 'offapi/com/sun/star/sdb/XSingleSelectQueryComposer.idl')
-rw-r--r--offapi/com/sun/star/sdb/XSingleSelectQueryComposer.idl20
1 files changed, 10 insertions, 10 deletions
diff --git a/offapi/com/sun/star/sdb/XSingleSelectQueryComposer.idl b/offapi/com/sun/star/sdb/XSingleSelectQueryComposer.idl
index ad609262ecbe..2bd5270adee8 100644
--- a/offapi/com/sun/star/sdb/XSingleSelectQueryComposer.idl
+++ b/offapi/com/sun/star/sdb/XSingleSelectQueryComposer.idl
@@ -70,7 +70,7 @@ interface XSingleSelectQueryComposer: XSingleSelectQueryAnalyzer
@throws com::sun::star::sdbc::SQLException
if a database access error occurs
or the statement isn't valid
- or the statement isn't parseable.
+ or the statement isn't parsable.
*/
void setFilter([in] string filter)
raises (com::sun::star::sdbc::SQLException);
@@ -79,7 +79,7 @@ interface XSingleSelectQueryComposer: XSingleSelectQueryAnalyzer
/** appends a new set of filter criteria which is split into levels.
@param filter
The filter criteria is split into levels. Each level represents the
- OR criterias. Within each level, the filters are provided as an AND criteria
+ OR criteria. Within each level, the filters are provided as an AND criteria
with the name of the column and the filter condition. The filter condition
is of type string. The operator used, is defined by <type scope="com::sun::star::sdb">SQLFilterOperator</type>.
@@ -113,13 +113,13 @@ interface XSingleSelectQueryComposer: XSingleSelectQueryAnalyzer
//-------------------------------------------------------------------------
- /** makes it possibile to set a group for the query.
+ /** makes it possible to set a group for the query.
@param group
the group part to set
@throws com::sun::star::sdbc::SQLException
if a database access error occurs
or the statement isn't valid
- or the statement isn't parseable..
+ or the statement isn't parsable.
*/
void setGroup([in] string group)
raises (com::sun::star::sdbc::SQLException);
@@ -146,7 +146,7 @@ interface XSingleSelectQueryComposer: XSingleSelectQueryAnalyzer
@throws com::sun::star::sdbc::SQLException
if a database access error occurs
or the statement isn't valid
- or the statement isn't parseable.
+ or the statement isn't parsable.
*/
void setHavingClause([in] string filter)
raises (com::sun::star::sdbc::SQLException);
@@ -156,7 +156,7 @@ interface XSingleSelectQueryComposer: XSingleSelectQueryAnalyzer
/** appends a new set of HAVING filter criteria which is split into levels.
@param filter
The HAVING filter criteria is split into levels. Each level represents the
- OR criterias. Within each level, the filters are provided as an AND criteria
+ OR criteria. Within each level, the filters are provided as an AND criteria
with the name of the column and the filter condition. The filter condition
is of type string. The operator used, is defined by <type scope="com::sun::star::sdb">SQLFilterOperator</type>.
@@ -188,13 +188,13 @@ interface XSingleSelectQueryComposer: XSingleSelectQueryAnalyzer
// ORDER BY
//-------------------------------------------------------------------------
- /** makes it possibile to set a sort condition for the query.
+ /** makes it possible to set a sort condition for the query.
@param order
the order part to set
@throws com::sun::star::sdbc::SQLException
if a database access error occurs
or the order isn't valid
- or the statement isn't parseable.
+ or the statement isn't parsable.
*/
void setOrder([in] string order)
raises (com::sun::star::sdbc::SQLException);
@@ -215,7 +215,7 @@ interface XSingleSelectQueryComposer: XSingleSelectQueryAnalyzer
raises (com::sun::star::sdbc::SQLException);
//-------------------------------------------------------------------------
- // culmulative composing
+ // cumulative composing
//-------------------------------------------------------------------------
/** sets a new elementary query for the composer
@@ -232,7 +232,7 @@ interface XSingleSelectQueryComposer: XSingleSelectQueryAnalyzer
<member>XSingleSelectQueryAnalyzer::getQueryWithSubstitution</member>, which always returns
the complete composed query.</p>
- <p>As a result, you can use the composer to build culmulative filter expressions. That
+ <p>As a result, you can use the composer to build cumulative filter expressions. That
is, you can set <member>ElementaryQuery</member> to a statement already containing
filters, and then use <member>setFilter</member> to append additional filters.</p>