How to use the UniqueIdentifier function from mssql
Find comprehensive JavaScript mssql.UniqueIdentifier code examples handpicked from public code repositorys.
311 312 313 314 315 316 317 318 319 320 321"smalldatetime": mssql.SmallDateTime, "datetime2": mssql.DateTime2, "datetimeoffset": mssql.DateTimeOffset, "guid": mssql.UniqueIdentifier, "UniqueIdentifier": mssql.UniqueIdentifier } const clone = (pObj, caseSensitive) => { return (pObj) ? nlib.clone(pObj, caseSensitive) : {} }
+ 12 other calls in file
142 143 144 145 146 147 148 149 150 151break; case 'timestamp': type = mssql.Time(mssql.MAX); break; case 'uniqueidentifier': type = mssql.UniqueIdentifier(); break; case 'varbinary': type = mssql.VarBinary(columnProperty.CHARACTER_MAXIMUM_LENGTH); break;
+ 3 other calls in file
170 171 172 173 174 175 176 177 178 179Int: mssql.Int, Numeric: mssql.Numeric, NVarChar: mssql.NVarChar, Real: mssql.Real, SmallInt: mssql.SmallInt, UniqueIdentifier: mssql.UniqueIdentifier } } function validateSqlConfig (config) {
mssql.connect is the most popular function in mssql (5681 examples)

