Thanks for the swift replay Andrey.
I have tried both versions and just get ?'s for the Japanese parts of
the text.
The code i am using is the following based on the example on github
<pre>
var db = require( 'mysql-native' ).createTCPClient( "10.90.0.150",
"3306" ); // localhost:3306 by default
db.auto_prepare = true;
function dump_rows( cmd ) {
cmd.addListener( 'row', function( r ) {
console.log( r );
} );
}
db.auth( "db", "user", "password");
dump_rows(db.query("SELECT * FROM info limit 1"));
dump_rows(db.execute("SELECT * FROM info limit 1"));
db.close();
</pre>
On Apr 20, 12:21 pm, Andrey Sidorov <
andrey.sido...@gmail.com> wrote:
> 1) are you having same results with query and execute?
> 2) if query works but execute not than it' probably problem fixed herehttps://
github.com/sidorares/nodejs-mysql-native/pull/64
> I hope I'll be able to integrate & test & publish this and other changes
> soon (you are welcome to try it)
>
> Cheers,
> Andrey
>