/home/martin/workspace/OpenStreetNav/src/psql/psql.cpp
Go to the documentation of this file.
00001 /*
00002  * psql.cpp
00003  *
00004  *  Created on: Nov 27, 2011
00005  *      Author: martin
00006  */
00007 
00008 #include "BindTypes.h"
00009 #include "RetTypes.h"
00010 #include "psql.h"
00011 
00012 namespace psql
00013 {
00014 
00015 void execute_sql(Database& db, std::string const& sql)
00016 {
00017     Statement<BindTypes<>, RetTypes<> > st(sql, db);
00018     st.execute();
00019 }
00020 
00021 }
00022 
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines