view db.h @ 13:f1d43b52ed36

and here now is the main program
author meillo@marmaro.de
date Wed, 23 Jul 2008 15:20:35 +0200
parents 8db6497d6065
children 5e6c9260913a
line wrap: on
line source

#include <sqlite3.h>

char* database;
char query[1024];
sqlite3* db;
sqlite3_stmt* stmt;


void db_connect();
void db_close();
sqlite3_stmt* db_query(char* query);
int db_update(char* query);