00001 00002 // Name: wx/dbi/types.h 00003 // Purpose: 00004 // Author: Joe Yates 00005 // Created: 2004-11-17 00006 // Copyright: (c) Joe Yates 00007 // License: BSD license (see the file 'LICENSE.txt') 00009 00010 #ifndef __wx_dbi_types_h__ 00011 #define __wx_dbi_types_h__ 00012 00013 // Use the same strings as wxVariant (see wx/src/common/variant.cpp) 00014 #define TYPENAME_BOOLEAN wxT("bool") 00015 #define TYPENAME_CHAR wxT("char") 00016 #define TYPENAME_LONG wxT("long") 00017 #define TYPENAME_DOUBLE wxT("double") 00018 #define TYPENAME_STRING wxT("string") 00019 #define TYPENAME_WXOBJECT wxT("wxObject") 00020 #define TYPENAME_VOIDPOINTER wxT("void*") 00021 00022 #endif // ndef __wx_dbi_types_h__