diff options
Diffstat (limited to 'src/sql/qsqlquery.cpp')
-rw-r--r-- | src/sql/qsqlquery.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sql/qsqlquery.cpp b/src/sql/qsqlquery.cpp index c33eb8bf2..98b481811 100644 --- a/src/sql/qsqlquery.cpp +++ b/src/sql/qsqlquery.cpp @@ -18,7 +18,7 @@ ** and the KDE Free TQt Foundation. ** ** Please review the following information to ensure GNU General -** Public Licensing retquirements will be met: +** Public Licensing requirements will be met: ** http://trolltech.com/products/qt/licenses/licensing/opensource/. ** If you are unsure which license is appropriate for your use, please ** review the following information: @@ -144,13 +144,13 @@ void TQSqlResultShared::slotResultDestroyed() TQSqlQuery supports prepared query execution and the binding of parameter values to placeholders. Some databases don't support - these features, so for them TQt emulates the retquired + these features, so for them TQt emulates the required functionality. For example, the Oracle and ODBC drivers have proper prepared query support, and TQt makes use of it; but for databases that don't have this support, TQt implements the feature itself, e.g. by replacing placeholders with actual values when a query is executed. The exception is positional binding using named - placeholders, which retquires that the database supports prepared + placeholders, which requires that the database supports prepared queries. Oracle databases identify placeholders by using a colon-name |