Add PDF writer.
This commit is contained in:
parent
c05b7b6315
commit
9c116b1efd
72 changed files with 1819 additions and 114 deletions
12
test/database/TestDatabase.cpp
Normal file
12
test/database/TestDatabase.cpp
Normal file
|
@ -0,0 +1,12 @@
|
|||
#include "DatabaseManager.h"
|
||||
|
||||
int main()
|
||||
{
|
||||
DatabaseManager db_manager;
|
||||
db_manager.CreateDatabase("test.db");
|
||||
|
||||
std::string statement = "CREATE TABLE corporation;";
|
||||
db_manager.Run(statement);
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue