forked from blue/lmdbal
18 lines
395 B
C++
18 lines
395 B
C++
#include <iostream>
|
|
|
|
#include "database.h"
|
|
#include "table.h"
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
Core::DataBase base("test1");
|
|
Core::DataBase::Table<uint32_t, uint32_t>* table1 = base.addTable<uint32_t, uint32_t>("table1");
|
|
Core::DataBase::Table<QString, QString>* table2 = base.addTable<QString, QString>("table2");
|
|
|
|
base.open();
|
|
|
|
table1->addRecord(1, 2);
|
|
|
|
return 0;
|
|
}
|