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