Click here to Skip to main content
15,895,746 members
Articles / Database Development / SQL Server

PostgreSQL/libpqxx Class Generator

Rate me:
Please Sign up or sign in to vote.
4.87/5 (15 votes)
18 Aug 200627 min read 83.5K   1.9K   37  
Automated generation of PostgreSQL data transfer classes.
/***************************************************************************
 stdafx.h  -  Standard precompiled header file. Things to observe are:
              (a) The definition of _WTL_NO_WTYPES and _WTL_NO_CSTRING.
			      These prevent confusion with the ATL and WTL types.
			  (b) The order of inclusions, particularly where atlstr.h is
			      included with respect to atlapp.h and atltypes.h.
			  (c) The inclusion of <pqxx/pqxx> includes all the standard
			      headers for dealing with the libpqxx functionality.
		      (d) libpqxx doesn't like the min and max macros. These
			      need to be replaced by a couple of inline template
				  functions.

 begin     : August 2006
 copyright : (C) 2006 by Phil Cairns
 email     : oti169@hotmail.com
 $Id: stdafx.h 2080 2006-08-18 01:53:19Z phil $

 This code may be used in compiled form in any way you desire (including
 commercial use). The code may be redistributed unmodified by any means
 providing it is not sold for profit without the authors written consent,
 and providing that this notice and the authors name and all copyright
 notices remains intact.

 This software is provided "as is" without express or implied warranty. Use
 it at your own risk!
 ***************************************************************************/

#pragma once

// Change these values to use different versions
#define WINVER			0x0500
//#define _WIN32_WINNT	0x0501
#define _WIN32_IE		0x0501
#define _RICHEDIT_VER	0x0100

// This is for the silly conflict between libpqxx and MSVC
#define NOMINMAX
template <typename T> T max(T a, T b) { return (a > b) ? a : b; }
template <typename T> T min(T a, T b) { return (a < b) ? a : b; }

#define WIN32_LEAN_AND_MEAN

#define _WTL_NO_WTYPES
#define _WTL_NO_CSTRING

#include <atlbase.h>
#include <atlstr.h>
#include <atlapp.h>

extern CAppModule _Module;

#include <atlwin.h>

#include <atlframe.h>
#include <atlctrls.h>
#include <atldlgs.h>
#include <atlctrlw.h>
#include <atlcomtime.h>
#include <atlcurr.h>
#include <atlddx.h>
#include <atltypes.h>

#include <string>
#include <queue>
#include <list>
#include <map>
#include <map>
#include <set>

#include <pqxx/pqxx>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions