⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qsqlselectcursor.3qt

📁 这个是Linux的qt源代码
💻 3QT
字号:
'\" t.TH QSqlSelectCursor 3qt "10 November 2003" "Trolltech AS" \" -*- nroff -*-.\" Copyright 1992-2001 Trolltech AS.  All rights reserved.  See the.\" license file included in the distribution for a complete license.\" statement..\".ad l.nh.SH NAMEQSqlSelectCursor \- Browsing of general SQL SELECT statements.SH SYNOPSIS\fC#include <qsqlselectcursor.h>\fR.PPInherits QSqlCursor..PP.SS "Public Members".in +1c.ti -1c.BI "\fBQSqlSelectCursor\fR ( const QString & query = QString::null, QSqlDatabase * db = 0 )".br.ti -1c.BI "\fBQSqlSelectCursor\fR ( const QSqlSelectCursor & other )".br.ti -1c.BI "\fB~QSqlSelectCursor\fR ()".br.in -1c.SH DESCRIPTIONThe QSqlSelectCursor class provides browsing of general SQL SELECT statements..PPQSqlSelectCursor is a convenience class that makes it possible to display result sets from general SQL \fCSELECT\fR statements in data-aware Qt widgets. QSqlSelectCursor is read-only and does not support \fCINSERT\fR, \fCUPDATE\fR or \fCDELETE\fR operations..PPPass the query in at construction time, or use the QSqlSelectCursor::exec() function..PPExample:.PP.nf.br    ....br    QSqlSelectCursor* cur = new QSqlSelectCursor( "SELECT id, firstname, lastname FROM author" );.br    QDataTable* table = new QDataTable( this );.br    table->setSqlCursor( cur, TRUE, TRUE );.br    table->refresh();.br    ....br    cur->exec( "SELECT * FROM books" );.br    table->refresh();.br    ....br.fi.PPSee also Database Classes..SH MEMBER FUNCTION DOCUMENTATION.SH "QSqlSelectCursor::QSqlSelectCursor ( const QString & query = QString::null, QSqlDatabase * db = 0 )"Constructs a read only cursor on database \fIdb\fR using the query \fIquery\fR..SH "QSqlSelectCursor::QSqlSelectCursor ( const QSqlSelectCursor & other )"Constructs a copy of \fIother\fR.SH "QSqlSelectCursor::~QSqlSelectCursor ()"Destroys the object and frees any allocated resources .SH "SEE ALSO".BR http://doc.trolltech.com/qsqlselectcursor.html.BR http://www.trolltech.com/faq/tech.html.SH COPYRIGHTCopyright 1992-2001 Trolltech AS, http://www.trolltech.com.  See thelicense file included in the distribution for a complete licensestatement..SH AUTHORGenerated automatically from the source code..SH BUGSIf you find a bug in Qt, please report it as described in.BR http://doc.trolltech.com/bughowto.html .Good bug reports help us to help you. Thank you..PThe definitive Qt documentation is provided in HTML format; it islocated at $QTDIR/doc/html and can be read using Qt Assistant or witha web browser. This man page is provided as a convenience for thoseusers who prefer man pages, although this format is not officiallysupported by Trolltech. .PIf you find errors in this manual page, please report them to.BR qt-bugs@trolltech.com .Please include the name of the manual page (qsqlselectcursor.3qt) and the Qtversion (3.2.3).

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -