ultimatepp/uppsrc/MSSQL/MSSQL.cpp
cxl 2f309d3972 MSSQL package (ODBC based)
git-svn-id: svn://ultimatepp.org/upp/trunk@1083 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2009-04-20 20:45:47 +00:00

12 lines
No EOL
162 B
C++

#include "MSSQL.h"
namespace Upp {
String MsSqlTextType(int width)
{
if(width <= 4000)
return NFormat("varchar(%d)", width);
return "text";
}
};