aboutsummaryrefslogtreecommitdiff
path: root/odb/mssql/auto-handle.cxx
blob: 62cbc1dafa71300c3e9ef48522284e5ef40e8deb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// file      : odb/mssql/auto-handle.cxx
// copyright : Copyright (c) 2005-2018 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);
    }
  }
}