Korinne Adler

Results 197 comments of Korinne Adler

Like all that could be done in https://github.com/markdirish/node-odbc/blob/d00c3ee6839ff67ca4415d53b0b9541e1fbec14a/lib/Connection.js#L161 and wouldn't need any C++ code for it at all. Well, it wouldn't but there's no method to bind output or inout...

> Every time I have to slow down and guard something with `if (isBigEndian()) { thing = byteswap(thing) }` it just feels like wasted effort Well yeah, that's not a...

Neither the SQL.LOG or latest cwbtrace have any relevant calls in them. It connects to the database and calls SQLGetInfo, but that's it. There's no calls to prepare, or SQLProcedures...

@jmbluethner setting the charset is a driver-specific thing, so it would help to know what driver you are using.

The current design of the node-odbc, even on Windows is that it binds all character data as SQL_C_CHAR and interprets it as UTF-8. If the driver does not support setting...

@chukShirley I'm building all the Python tests as unit tests with mocking. Eventually, I'd like some integration tests too, but with mocked unit tests, you can use something like TravisCI...

Yep, I agree that's really needed. I'd love something like TravisCI for open source IBM i projects. Maybe Liam can get his barryCI going.

@jimobit The link points to the wiki I dumped in to the docs directory. The local text is https://github.com/IBM/xmlservice/blob/master/docs/wiki-dump/functions.txt#L1270-L1293

Reminds me I should work to get #40 merged

So from what I gather, an options template is basically an object which gets instantiated. In order to use it, you must have already declared and instantiated it, so the...