blob: ea142c93908a3a24b99b7f90f4d292087f9e904c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// file : common/query/traits.hxx
// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#ifndef TRAITS_HXX
#define TRAITS_HXX
#include <common/config.hxx>
#if defined(DATABASE_MYSQL)
# include "traits-mysql.hxx"
#elif defined(DATABASE_ORACLE)
# include "traits-oracle.hxx"
#elif defined(DATABASE_SQLITE)
# include "traits-sqlite.hxx"
#elif defined(DATABASE_PGSQL)
# include "traits-pgsql.hxx"
#endif
#endif // TRAITS_HXX
|