How to use the getValueForSQL function from mssql
Find comprehensive JavaScript mssql.getValueForSQL code examples handpicked from public code repositorys.
GitHub: Bazilio-san/af-lib
513 514 515 516 517 518 519 520 521 522
* @param {*} value * @param {dbFieldSchema} fieldSchema * @returns {String|Number} */ sql.serialize = (value, fieldSchema) => { const val = sql.getValueForSQL(value, fieldSchema); if (val == null || val === 'NULL') { return null; } if (typeof val === 'number') {
0
0
0
+ 3 other calls in file
mssql.connect is the most popular function in mssql (5681 examples)