The QSql class is a namespace for Qt SQL identifiers that need to be global-like.
.PP
Normally, you can ignore this class. Several Qt SQL classes inherit it, so all the identifiers in the Qt SQL namespace are visible without qualification.
.PP
See also Database Classes.
.SS "Member Type Documentation"
.SH "QSql::Confirm"
This enum type describes edit confirmations.
.TP
\fCQSql::Yes\fR
.TP
\fCQSql::No\fR
.TP
\fCQSql::Cancel\fR
.SH "QSql::Location"
This enum type describes SQL navigation locations.
.TP
\fCQSql::BeforeFirst\fR
.TP
\fCQSql::AfterLast\fR
.SH "QSql::Op"
This enum type describes edit operations.
.TP
\fCQSql::None\fR
.TP
\fCQSql::Insert\fR
.TP
\fCQSql::Update\fR
.TP
\fCQSql::Delete\fR
.SH "QSql::ParameterType"
This enum is used to set the type of a bind parameter
.TP
\fCQSql::In\fR - the bind parameter is used to put data into the database
.TP
\fCQSql::Out\fR - the bind parameter is used to receive data from the database
.TP
\fCQSql::InOut\fR - the bind parameter is used to put data into the database; it will be overwritten with output data on executing a query.
.SH "QSql::TableType"
This enum type describes types of tables
.TP
\fCQSql::Tables\fR - All the tables visible to the user
.TP
\fCQSql::SystemTables\fR - Internal tables used by the DBMS
.TP
\fCQSql::Views\fR - All the views visible to the user