contactengine/dbtools.h
author John Kern <johnk@symbian.org>
Fri, 03 Sep 2010 10:38:13 -0700
changeset 42 b9716e8867f1
parent 20 a7451a8eb5dc
permissions -rw-r--r--
checking in example; variations on List Widgets

#ifndef DBTOOLS_H
#define DBTOOLS_H

#include <QObject>

class DBTools : QObject
{
    Q_OBJECT
public:
    explicit DBTools(QObject *parent = 0);
    ~DBTools();

public:
    void importCSV(QString fileName);
    void testDB();

signals:

public slots:

private:
    bool createDB();
    void insertContact( QString name, QString mobile, QString deskphone,
                        int xtn, QString email, QString skype,
                        QString twitter, QString title, int site,
                        int department, int floor);
    int getLastInsertRowId();
    bool createTable(QString sqlStmt);

};

#endif // DBTOOLS_H