mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
12 lines
No EOL
162 B
C++
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";
|
|
}
|
|
|
|
}; |