MS SQL Server BIGINT added to supported types in OleDB schema definition

git-svn-id: svn://ultimatepp.org/upp/trunk@1850 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
rylek 2009-12-29 00:52:02 +00:00
parent c052c0c406
commit a085713350
2 changed files with 17 additions and 7 deletions

View file

@ -13,6 +13,11 @@
#define INT_(x) COLUMN_("integer", int, x, 0, 0)
#define INT_ARRAY_(x, items) COLUMN_ARRAY_("integer", int, x, 0, 0, items)
#define BIGINT(x) COLUMN("bigint", int64, x, 0, 0)
#define BIGINT_ARRAY(x, items) COLUMN_ARRAY("bigint", int64, x, 0, 0, items)
#define BIGINT_(x) COLUMN_("bigint", int64, x, 0, 0)
#define BIGINT_ARRAY_(x, items) COLUMN_ARRAY_("bigint", int64, x, 0, 0, items)
#define DOUBLE(x) COLUMN("double precision", double, x, 0, 0)
#define DOUBLE_ARRAY(x, items) COLUMN_ARRAY("double precision", double, x, 0, 0, items)
#define DOUBLE_(x) COLUMN_("double precision", double, x, 0, 0)
@ -66,6 +71,11 @@
#undef INT_
#undef INT_ARRAY_
#undef BIGINT
#undef BIGINT_ARRAY
#undef BIGINT_
#undef BIGINT_ARRAY_
#undef DOUBLE
#undef DOUBLE_ARRAY
#undef DOUBLE_
@ -76,10 +86,10 @@
#undef DATE_
#undef DATE_ARRAY_
#undef DATETIME
#undef DATETIME_ARRAY
#undef DATETIME_
#undef DATETIME_ARRAY_
#undef TIME
#undef TIME_ARRAY
#undef TIME_
#undef TIME_ARRAY_
#undef STRING
#undef STRING_ARRAY

View file

@ -5,14 +5,14 @@
#ifdef PLATFORM_WIN32
extern bool InitService(); // implemented by main program
extern void RunService(); // implemented by main program
NAMESPACE_UPP
extern volatile bool service_stopped;
extern volatile bool service_paused;
extern bool InitService(); // implemented by main program
extern void RunService(); // implemented by main program
void InstallConsoleCtrlHandler();
bool InstallService(String name, String display_name, String& cmdline, String& status);
bool UninstallService(String name, String& status);