Jevgenijs

Results 19 comments of Jevgenijs

Client's default FB database charset is set to WIN1251 (cyrilic), Also columns in tables have win1251 charset, and the collate also :) But, the fact, that data in DB is...

Hello, I changed the code like so: case SQL_VARYING: /* vary2 = (PARAMVARY_) var->sqldata; vary2->vary_string[vary2->vary_length] = '\0'; js_field = String::New((const char_)(vary2->vary_string)); _/ vary2 = (PARAMVARY_) var->sqldata; node::Buffer _slowBuffer = node::Buffer::New(vary2->vary_length);...

> But things become more complex when you need updates. For the luck, in my node server I need only SELECT statements, so if the custom patch will finally be...

New code: case SQL_VARYING: /* vary2 = (PARAMVARY_) var->sqldata; vary2->vary_string[vary2->vary_length] = '\0'; js_field = String::New((const char_)(vary2->vary_string)); _/ vary2 = (PARAMVARY_) var->sqldata; Buffer _slowBuffer = Buffer::New(vary2->vary_length); memcpy(Buffer::Data(slowBuffer), (const char_)(vary2->vary_string), vary2->vary_length); Local...

Thank you very much, it was compiled for me also (with some "warnings")! Now it works, so that symbols are normally converted to utf8 AND on the clients it is...

I tried that, but the same "Seg fault" appears. Also, I removed the call on iconv, just to be sure it is not a fault of iconv. The logs are...

Started my server yesterday in the evening — still working! thank you very much! Can you please leave that issue for users who will have the same need as me...

hello! testing a new patch on my server, it is find out that it also fails with "Segmentation fault" after 20-30 min of work... :(

https://gist.github.com/2876204 Starts from latest line: "fbGetAndPushEvents();" (253) My new code establish 1 connection (actually 2, because I have to take data from 2 different DB). And in every function I...

Там есть СКЛ которые выполняются когда новый клиент присоединяется к серверу — это одно. А есть общий цикл который каждые Х секунд выполняет некоторые СКЛ по разным таблицам — это...