mysqljs / mysql

A pure node.js JavaScript Client implementing the MySQL protocol.
MIT License
18.28k stars 2.52k forks source link

Is mysql_stmt_send_long_data supported ? #2444

Closed ortegarenzy closed 3 years ago

ortegarenzy commented 3 years ago

I am trying to insert large blobs into MySQL but fails because of ER_NET_PACKET_TOO_LARGE. I don't want to change the setting of the MySQL that's why I was hoping if this approach is supported here ?

dougwilson commented 3 years ago

Hi @ortegarenzy this module does not (currently) support prepared statements functionality (https://github.com/mysqljs/mysql#todo).

ortegarenzy commented 3 years ago

@dougwilson Thank you for the info!