Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何支持 LOAD DATA INFILE (http://dev.mysql.com/doc/refman/5.0/en/load-data.html) 的 node.js MySQL 驱动程序?我有一些严重依赖批量插入的实用程序,并且找不到任何明确提到支持它的 node.js 驱动程序。
这篇文章表明felixge驱动程序支持 LOAD DATA INFILE。
刚刚验证它有效:
conn.query('LOAD DATA LOCAL INFILE ? INTO TABLE my_table (col1, col2)', [pathToFile], function(err) { //done });