Connector/Node.js 3.0.2 Release Notes
Connector/Node.js 3.0.2 is a Stable (GA) release of MariaDB Connector/Node.js, released on 2022-10-27
Notable Changes
permit streaming prepare statement result
const prepare = await shareConn.prepare('SELECT * FROM mysql.user where host = ?');
const stream = prepare.executeStream(['localhost']);
try {
for await (const row of stream) {
console.log(row);
}
} catch (e) {
queryStream.close();
}
prepare.close();Issues Fixed
Last updated
Was this helpful?

