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
/** | |
* MySQL Multi-Line Insert | |
* ======================= | |
* See: https://gist.github.com/ProjectCleverWeb/d2362b082af1d7054ebfd464f202ec1b | |
* | |
* Notes: | |
* - I used a output buffer variable since in most languages variables are | |
* significantly faster than function calls and in this case the syntax for | |
* using a variable was both shorter and easier to read. | |
* - Table & column names are quoted to help improve compatibility, but in most |