mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-23 06:12:17 -06:00
21 lines
406 B
C++
21 lines
406 B
C++
#ifndef _MSSQL_MSSQL_h
|
|
#define _MSSQL_MSSQL_h
|
|
|
|
#include "ODBC/ODBC.h"
|
|
|
|
namespace Upp {
|
|
|
|
String MsSqlTextType(int width);
|
|
|
|
typedef ODBCSession MSSQLSession;
|
|
|
|
inline
|
|
bool MSSQLPerformScript(const String& text, StatementExecutor& executor,
|
|
Gate2<int, int> progress_canceled = false)
|
|
{
|
|
return ODBCPerformScript(text, executor, progress_canceled);
|
|
}
|
|
|
|
};
|
|
|
|
#endif
|