Rod Howard
Rod Howard
I'm not sure if what we're experiencing is exactly the same issue but we are trying to lazy load routes (bundles) and then using ``` if (store.hasModule(key)) return; store.registerModule(key, componentStateObject);...
Hi George, As of version 1.0.12 I have added support for a "sybaseConfig.properties" file where you can add jconnect properties that will be added to the connection. I have no...
Hi George I think your putting it in the right place (same directory your running node from). I got the same exception, I think you need to point the jconnect...
Hi Martin, Thanks for you're input all your suggestions seem really good! I hesitate to make changes though because I don't have access to Sybase so I can't test anything....
Hi Gulats, I think this is because jconnect.jar its looking for another library to handle the encryption. I haven't packaged that library and I'm not 100% sure how to get...
Stored procedures in general should work. Perhaps your hitting a corner case in your stored procedure. The relevant code is in: https://github.com/rodhoward/node-sybase/blob/master/JavaSybaseLink/src/ExecSQLCallable.java: ``` boolean isRS = stmt.execute(request.sql); while (isRS ||...
As a work around it might also be worth just setting this flag in the stored procedure if your still having issues: ` SET NOCOUNT ON; `
Hi Theneva, I have tested this locally and both stored procedures that insert and update multiple lines are working. My Sybase version is: Adaptive Server Enterprise/15.0.2/EBF 15687 ESD#5/P/x86_64/Enterprise Linux/ase1502/2528/64-bit/FBO/Tue Jun...
I have rebuilt the jar with no code changes and released a new version 1.0.13. I am compiling with java 1.6. Its working fine for me but that doesn't say...
Yeah sorry must have missed that suggestion a while back. I'll try and fix that soon.