aboutsummaryrefslogtreecommitdiff
path: root/odb/mssql/auto-handle.cxx
blob: 118b5b6ac8d23390a9e42e6e18b3459263aa57d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// file      : odb/mssql/auto-handle.cxx
// author    : Constantin Michael <constantin@codesynthesis.com>
// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
// license   : ODB NCUEL; see accompanying LICENSE file

#include <odb/mssql/mssql.hxx>
#include <odb/mssql/auto-handle.hxx>

namespace odb
{
  namespace mssql
  {
    void
    free_handle (SQLHANDLE h, SQLSMALLINT htype)
    {
      SQLFreeHandle (htype, h);
    }
  }
}