Created
August 12, 2019 19:23
-
-
Save dperussina/6919213afad669146b7253d77409aa7e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SQL(query2, function (err, reply) { | |
if (err) { | |
ERRORS.push({ | |
source: 'exec insertAddressPoints2', | |
stack: reply, | |
data: e, | |
query: query2 | |
}); | |
U.errorLn('insertAddress', query2); | |
next(true, reply); | |
return; | |
} | |
next(false); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
next(false); | |
// SQL(query2, function (err, reply) { | |
// if (err) { | |
// ERRORS.push({ | |
// source: 'exec insertAddressPoints2', | |
// stack: reply, | |
// data: e, | |
// query: query2 | |
// }); | |
// U.errorLn('insertAddress', query2); | |
// next(true, reply); | |
// return; | |
// } | |
// next(false); | |
// }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment