Denys Khanzhiyev
Denys Khanzhiyev
As I said the example is synthentic and it does not reflect exactly the real layout of application. This was the fastest way to get similar freezing effect. There is...
Ok the problem seems to be reproducable only in VDI environment. On real hardware I also cannot reproduce freezing effect. Still strange that Chrome does not have such problems. This...
One addtion. Firefox does not freeze with setting: accessibility.force_disabled = 1 And in non VDI environment it does not freeze with any setting. Still with dsiabled accessibility seems to be...
https://nodejs.org/dist/latest-v6.x/docs/api/os.html#os_os_arch
Any problems with null-terminated strings? chars field should work
see source - it uses standard NodeJS Buffer.toString Method and slices string to zero character. https://github.com/xdenser/node-struct/blob/master/index.js#L92
As for now it is not possible. What for do you need other CHARSET? You will not be able to work correctly with strings in JavaScript. libfbclient makes transcoding for...
Well to read non utf8 charsets fetch, fetchSync methods should return Buffers not strings. That need major changes in fb-bindings-fbresult.cc. For example for varchar field type line 392-394 may be...
Try w/o namespaces ``` cpp vary2 = (PARAMVARY*) var->sqldata; Buffer *slowBuffer = Buffer::New(vary2->vary_length); memcpy(Buffer::Data(slowBuffer), (const char*)(vary2->vary_string), vary2->vary_length); Local globalObj = Context::GetCurrent()->Global(); Local bufferConstructor = Local::Cast(globalObj->Get(String::New("Buffer"))); Handle constructorArgs[3] = { slowBuffer->handle_,...
Ok I'll try to make the changes, In saparate branch.