#include <qsqlquery.h>


void FormClient::init()
{
    // Affichage de tous les code de formation
    QSqlQuery query( "SELECT nom_cli FROM CLIENT ORDER BY nom_cli;" );
    comboBoxClient->clear();
    while ( query.next() )
    {
	comboBoxClient->insertItem( query.value(0).toString() );
    }
}
