MeeGo 1.2 Harmattan Developer Documentation Develop for the Nokia N9

Q3SqlForm Class Reference

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.

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.