blob: 80cff6597d54fd485b0e0b5ca0559a823451eb64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// file : odb/mssql/mssql.hxx
// author : Constantin Michael <constantin@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license : ODB NCUEL; see accompanying LICENSE file
#ifndef ODB_MSSQL_MSSQL_HXX
#define ODB_MSSQL_MSSQL_HXX
#include <odb/pre.hxx>
// This file should always be included before mssql-fwd.hxx.
//
#ifdef ODB_MSSQL_MSSQL_FWD_HXX
# error odb/mssql/mssql-fwd.hxx included before odb/mssql/mssql.hxx
#endif
#ifdef _WIN32
# ifndef WIN32_LEAN_AND_MEAN
# define WIN32_LEAN_AND_MEAN
# endif
# include <windows.h>
#endif
#include <sqlext.h> // Standard ODBC.
//#define _SQLNCLI_ODBC_
//#include <sqlncli.h> // SQL Server native client driver specifics.
#include <odb/post.hxx>
#endif // ODB_MSSQL_MSSQL_HXX
|