mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-20 11:00:44 -06:00
22 lines
429 B
C++
22 lines
429 B
C++
#include <QObject>
|
|
|
|
class TestTable: public QObject
|
|
{
|
|
Q_OBJECT
|
|
private slots:
|
|
void sqlOutput();
|
|
void autoincrement();
|
|
void notnull();
|
|
void withoutRowid();
|
|
|
|
void parseSQL();
|
|
void parseSQLdefaultexpr();
|
|
void parseSQLMultiPk();
|
|
void parseSQLForeignKey();
|
|
void parseSQLSingleQuotes();
|
|
void parseSQLKeywordInIdentifier();
|
|
void parseSQLWithoutRowid();
|
|
void parseNonASCIIChars();
|
|
};
|
|
|