Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Toutes les fonctions  ·  Vues d'ensemble  · 

Q3SqlForm Class Reference
[Qt3Support module]

The Q3SqlForm class creates and manages data entry forms tied to SQL databases. More...

 #include <Q3SqlForm>

This class is part of the Qt 3 support library. It is provided to keep old source code working. We strongly advise against using it in new code. See Porting to Qt 4 for more information.

This class is not part of the Qt GUI Framework Edition.

Inherits QObject.


Public Functions

Q3SqlForm ( QObject * parent = 0 )
~Q3SqlForm ()
int count () const
QWidget * fieldToWidget ( QSqlField * field ) const
virtual void insert ( QWidget * widget, const QString & field )
void installPropertyMap ( Q3SqlPropertyMap * pmap )
virtual void remove ( const QString & field )
virtual void setRecord ( QSqlRecord * buf )
QWidget * widget ( int i ) const
QSqlField * widgetToField ( QWidget * widget ) const
  • 29 public functions inherited from QObject

Public Slots

virtual void clear ()
virtual void clearValues ()
virtual void readField ( QWidget * widget )
virtual void readFields ()
virtual void writeField ( QWidget * widget )
virtual void writeFields ()
  • 1 public slot inherited from QObject

Protected Functions

virtual void insert ( QWidget * widget, QSqlField * field )
virtual void remove ( QWidget * widget )
  • 7 protected functions inherited from QObject

Additional Inherited Members

  • 1 property inherited from QObject
  • 1 signal inherited from QObject
  • 5 static public members inherited from QObject

Detailed Description

The Q3SqlForm class creates and manages data entry forms tied to SQL databases.

Typical use of a Q3SqlForm consists of the following steps:

  • Create the widgets you want to appear in the form.
  • Create a cursor and navigate to the record to be edited.
  • Create the Q3SqlForm.
  • Set the form's record buffer to the cursor's update buffer.
  • Insert each widget and the field it is to edit into the form.
  • Use readFields() to update the editor widgets with values from the database's fields.
  • Display the form and let the user edit values etc.
  • Use writeFields() to update the database's field values with the values in the editor widgets.

Note that a Q3SqlForm does not access the database directly, but most often via QSqlFields which are part of a Q3SqlCursor. A Q3SqlCursor::insert(), Q3SqlCursor::update() or Q3SqlCursor::del() call is needed to actually write values to the database.

Some sample code to initialize a form successfully:

 QLineEdit  myEditor(this);
 Q3SqlForm   myForm(this);
 Q3SqlCursor myCursor("mytable");

 // Execute a query to make the cursor valid
 myCursor.select();
 // Move the cursor to a valid record (the first record)
 myCursor.next();
 // Set the form's record pointer to the cursor's edit buffer (which
 // contains the current record's values)
 myForm.setRecord(myCursor.primeUpdate());

 // Insert a field into the form that uses myEditor to edit the
 // field 'somefield' in 'mytable'
 myForm.insert(&myEditor, "somefield");

 // Update myEditor with the value from the mapped database field
 myForm.readFields();
 ...
 // Let the user edit the form
 ...
 // Update the database
 myForm.writeFields();  // Update the cursor's edit buffer from the form
 myCursor.update();        // Update the database from the cursor's buffer

If you want to use custom editors for displaying and editing data fields, you must install a custom Q3SqlPropertyMap. The form uses this object to get or set the value of a widget.

See also installPropertyMap() and Q3SqlPropertyMap.


Member Function Documentation

Q3SqlForm::Q3SqlForm ( QObject * parent = 0 )

Constructs a Q3SqlForm with parent parent.

Q3SqlForm::~Q3SqlForm ()

Destroys the object and frees any allocated resources.

void Q3SqlForm::clear ()   [virtual slot]

Removes every widget, and the fields they're mapped to, from the form.

void Q3SqlForm::clearValues ()   [virtual slot]

Clears the values in all the widgets, and the fields they are mapped to, in the form, and sets them to NULL.

int Q3SqlForm::count () const

Returns the number of widgets in the form.

QWidget * Q3SqlForm::fieldToWidget ( QSqlField * field ) const

Returns the widget that field field is mapped to.

void Q3SqlForm::insert ( QWidget * widget, const QString & field )   [virtual]

Inserts a widget, and the name of the field it is to be mapped to, into the form. To actually associate inserted widgets with an edit buffer, use setRecord().

See also setRecord().

void Q3SqlForm::insert ( QWidget * widget, QSqlField * field )   [virtual protected]

This is an overloaded function.

Inserts a widget, and the field it is to be mapped to, into the form.

void Q3SqlForm::installPropertyMap ( Q3SqlPropertyMap * pmap )

Installs a custom Q3SqlPropertyMap. This is useful if you plan to create your own custom editor widgets.

Q3SqlForm takes ownership of pmap, so pmap is deleted when Q3SqlForm goes out of scope.

See also Q3DataTable::installEditorFactory().

void Q3SqlForm::readField ( QWidget * widget )   [virtual slot]

Updates the widget widget with the value from the SQL field it is mapped to. Nothing happens if no SQL field is mapped to the widget.

void Q3SqlForm::readFields ()   [virtual slot]

Updates the widgets in the form with current values from the SQL fields they are mapped to.

void Q3SqlForm::remove ( QWidget * widget )   [virtual protected]

Removes a widget, and hence the field it's mapped to, from the form.

void Q3SqlForm::remove ( const QString & field )   [virtual]

This is an overloaded function.

Removes field from the form.

void Q3SqlForm::setRecord ( QSqlRecord * buf )   [virtual]

Sets buf as the record buffer for the form. To force the display of the data from buf, use readFields().

See also readFields() and writeFields().

QWidget * Q3SqlForm::widget ( int i ) const

Returns the i-th widget in the form. Useful for traversing the widgets in the form.

QSqlField * Q3SqlForm::widgetToField ( QWidget * widget ) const

Returns the SQL field that widget widget is mapped to.

void Q3SqlForm::writeField ( QWidget * widget )   [virtual slot]

Updates the SQL field with the value from the widget it is mapped to. Nothing happens if no SQL field is mapped to the widget.

void Q3SqlForm::writeFields ()   [virtual slot]

Updates the SQL fields with values from the widgets they are mapped to. To actually update the database with the contents of the record buffer, use Q3SqlCursor::insert(), Q3SqlCursor::update() or Q3SqlCursor::del() as appropriate.

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 94
  2. Apercevoir la troisième dimension ou l'utilisation multithreadée d'OpenGL dans Qt, un article des Qt Quarterly traduit par Guillaume Belz 0
  3. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  4. Pourquoi les programmeurs sont-ils moins payés que les gestionnaires de programmes ? Manquent-ils de pouvoir de négociation ? 42
  5. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  6. 2017 : un quinquennat pour une nouvelle version du C++ ? Possible, selon Herb Sutter 9
  7. Qt Commercial : Digia organise un webinar gratuit le 27 mars sur la conception d'interfaces utilisateur et d'applications avec le framework 0
Page suivante

Le Qt Developer Network au hasard

Logo

Combiner licence, à propos et fermer d'une dernière manière

Le Qt Developer Network est un réseau de développeurs Qt anglophone, où ils peuvent partager leur expérience sur le framework. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 4.6
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web