summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2014-09-17 21:14:52 +0200
committerJulien Nabet <serval2412@yahoo.fr>2014-09-17 21:15:33 +0200
commita762204a5df46ef68c5b0be4427fc99e32c4c36d (patch)
tree375dac376cd52f9754661b0a4bdf66a6b7b22a50 /dbaccess
parent9acf9b650481c53ac2fe3a13ad2b5a04db395386 (diff)
Typos
Change-Id: Icf850c4b7b146a82a5638a3cd88ad02f3171aff3
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/qa/complex/dbaccess/RowSet.java2
-rw-r--r--dbaccess/source/core/api/CacheSet.cxx2
-rw-r--r--dbaccess/source/core/api/KeySet.cxx10
-rw-r--r--dbaccess/source/core/api/OptimisticSet.cxx2
4 files changed, 8 insertions, 8 deletions
diff --git a/dbaccess/qa/complex/dbaccess/RowSet.java b/dbaccess/qa/complex/dbaccess/RowSet.java
index c9bb39aa0a38..66749fb30233 100644
--- a/dbaccess/qa/complex/dbaccess/RowSet.java
+++ b/dbaccess/qa/complex/dbaccess/RowSet.java
@@ -200,7 +200,7 @@ public class RowSet extends TestCase
System.out.println("testing testRowSet");
createTestCase(true);
- // sequential postioning
+ // sequential positioning
m_resultSet.beforeFirst();
testSequentialPositining(m_resultSet, m_row);
diff --git a/dbaccess/source/core/api/CacheSet.cxx b/dbaccess/source/core/api/CacheSet.cxx
index 65c5e83cfcda..de9d9434db47 100644
--- a/dbaccess/source/core/api/CacheSet.cxx
+++ b/dbaccess/source/core/api/CacheSet.cxx
@@ -282,7 +282,7 @@ void SAL_CALL OCacheSet::updateRow(const ORowSetRow& _rInsertRow ,const ORowSetR
fillTableName(xSet);
OUStringBuffer aSql("UPDATE " + m_aComposedTableName + " SET ");
- // list all cloumns that should be set
+ // list all columns that should be set
OUStringBuffer aCondition;
::std::list< sal_Int32> aOrgValues;
diff --git a/dbaccess/source/core/api/KeySet.cxx b/dbaccess/source/core/api/KeySet.cxx
index 2c75718a4ab3..96e01ab05346 100644
--- a/dbaccess/source/core/api/KeySet.cxx
+++ b/dbaccess/source/core/api/KeySet.cxx
@@ -562,14 +562,14 @@ void SAL_CALL OKeySet::updateRow(const ORowSetRow& _rInsertRow ,const ORowSetRow
fillTableName(xSet);
OUStringBuffer aSql = "UPDATE " + m_aComposedTableName + " SET ";
- // list all cloumns that should be set
+ // list all columns that should be set
static OUString aPara(" = ?,");
OUString aQuote = getIdentifierQuoteString();
static OUString aAnd(" AND ");
OUString sIsNull(" IS NULL");
OUString sParam(" = ?");
- // use keys and indexes for exact postioning
+ // use keys and indexes for exact positioning
// first the keys
Reference<XNameAccess> xKeyColumns = getKeyColumns();
@@ -972,11 +972,11 @@ void SAL_CALL OKeySet::deleteRow(const ORowSetRow& _rDeleteRow,const connectivit
OUStringBuffer aSql("DELETE FROM " + m_aComposedTableName + " WHERE ");
- // list all cloumns that should be set
+ // list all columns that should be set
OUString aQuote = getIdentifierQuoteString();
static OUString aAnd(" AND ");
- // use keys and indexes for excat postioning
+ // use keys and indexes for exact positioning
Reference<XNameAccess> xKeyColumns = getKeyColumns();
// second the indexes
Reference<XIndexesSupplier> xIndexSup(_xTable,UNO_QUERY);
@@ -1082,7 +1082,7 @@ void SAL_CALL OKeySet::moveToCurrentRow( ) throw(SQLException, RuntimeException
Reference<XNameAccess> OKeySet::getKeyColumns() const
{
- // use keys and indexes for exact postioning
+ // use keys and indexes for exact positioning
// first the keys
Reference<XIndexAccess> xKeys = m_xTableKeys;
diff --git a/dbaccess/source/core/api/OptimisticSet.cxx b/dbaccess/source/core/api/OptimisticSet.cxx
index 44e780725b55..aece21b12db2 100644
--- a/dbaccess/source/core/api/OptimisticSet.cxx
+++ b/dbaccess/source/core/api/OptimisticSet.cxx
@@ -182,7 +182,7 @@ void SAL_CALL OptimisticSet::updateRow(const ORowSetRow& _rInsertRow ,const ORow
{
if ( m_aJoinedKeyColumns.empty() )
throw SQLException();
- // list all cloumns that should be set
+ // list all columns that should be set
static OUString s_sPara(" = ?");
OUString aQuote = getIdentifierQuoteString();