Corrected more spellings.

This commit is contained in:
martin-osborne
2015-04-10 11:43:49 +01:00
parent 4cf45ea4a3
commit 7780ab3ae0
32 changed files with 74 additions and 74 deletions

View File

@@ -172,7 +172,7 @@ public:
/// Binds a long.
virtual void bind(std::size_t pos, const unsigned long& val, Direction dir = PD_IN) = 0;
/// Binds an unsiged long.
/// Binds an unsigned long.
virtual void bind(std::size_t pos, const std::vector<long>& val, Direction dir = PD_IN);
/// Binds a long vector.

View File

@@ -125,7 +125,7 @@ public:
/// Returns the number of comparisons removed.
void toggleNot();
/// Togless the NOT operator for this filter;
/// Toggles the NOT operator for this filter;
bool isNot() const;
/// Returns true if filter is NOT-ed, false otherwise.

View File

@@ -202,7 +202,7 @@ public:
/// reconnect a disconnected session.
/// If the connection is not established,
/// a ConnectionFailedException is thrown.
/// Zero timout means indefinite
/// Zero timeout means indefinite
void close();
/// Closes the session.
@@ -262,7 +262,7 @@ public:
static std::string uri(const std::string& connector,
const std::string& connectionString);
/// Utility function that teturns the URI formatted from supplied
/// Utility function that returns the URI formatted from supplied
/// arguments as "connector:///connectionString".
void setFeature(const std::string& name, bool state);

View File

@@ -67,7 +67,7 @@ public:
/// a disconnected session.
/// If the connection is not established within requested timeout
/// (specified in seconds), a ConnectionFailedException is thrown.
/// Zero timout means indefinite
/// Zero timeout means indefinite
virtual void close() = 0;
/// Closes the connection.

View File

@@ -111,7 +111,7 @@ public:
void execute(const std::vector<std::string>& sql);
/// Executes all the SQL statements supplied in the vector and, after the last
/// one is sucesfully executed, commits the transaction.
/// one is successfully executed, commits the transaction.
/// If an error occurs during execution, transaction is rolled back.
/// Passing true value for commit disables rollback during destruction
/// of this Transaction object.