// file : odb/mssql/auto-handle.cxx // license : ODB NCUEL; see accompanying LICENSE file #include #include namespace odb { namespace mssql { void free_handle (SQLHANDLE h, SQLSMALLINT htype) { SQLFreeHandle (htype, h); } } }