Re: [AOLSERVER] [ns_db and multibyte support]

2008-04-17 Thread Rajesh Nair
n AOLServer and SQLServer to see the 2 login requests being made with the 2nd request not setting the COLLATION header. I suspect it to be the culprit. Thanks-- -- Rajesh Nair -Original Message- From: Dossy Shiobara [mailto:[EMAIL PROTECTED] Sent: Thursday, April 17, 2008 2:26 AM

Re: [AOLSERVER] [ns_db and multibyte support]

2008-04-15 Thread Rajesh Nair
-Original Message- From: AOLserver Discussion [mailto:[EMAIL PROTECTED] On Behalf Of Dossy Shiobara Sent: Tuesday, April 15, 2008 7:10 PM To: AOLSERVER@LISTSERV.AOL.COM Subject: Re: [AOLSERVER] [ns_db and multibyte support] On 2008.04.15, Rajesh Nair <[EMAIL PROTECTED]> wrote: >

Re: [AOLSERVER] [ns_db and multibyte support]

2008-04-15 Thread Rajesh Nair
nsfreetds driver. I am new to nsfreetds lib. Can you point me to the function which will be called on ns_db gethandle. I would like to delve into the nsfreetds sourcecode to fix this issue Thanks -- -- Rajesh Nair -Original Message- From: AOLserver Discussion [mailto:[EMAIL PROTECTED] On

Re: [AOLSERVER] [ns_db and multibyte support]

2008-04-14 Thread Rajesh nair
COLLATION to be set. We had tried searching fro setting COLLATION explicitly but without luck, My question is , Could the second login request be a bug of nsfreetds driver? -- Rajesh Nair Rajesh nair wrote on Wed, 09 Apr 2008 11:50:21 -0700 Found the problem cause and the solution

Re: [AOLSERVER] ns_db and multibyte support

2008-04-09 Thread Rajesh nair
s is what mysql JDBC driver was doing to get the correct results. This lead me to believe there is scope for enhancing nsmysql to set such variables (much like Mysql JDBC driver) to ease the life of developers. Hope this helps others-- -- Rajesh Nair Darren Ferguson wrote: I had similar is

Re: [AOLSERVER] ns_db and multibyte support

2008-04-09 Thread Rajesh nair
Darren, The Content-Type is set to *text/html; charset=utf-8*. Though the way I have done is /*ns_set put [ns_conn outputheaders] "Content-Type" "text/html; charset=utf-8" */I tried the meta tag equivalent too but no luck! /* */-- Rajesh Nair/* */ Darren Ferguson wrote:

Re: [AOLSERVER] ns_db and multibyte support

2008-04-09 Thread Rajesh nair
Oops , forgot to attach the adp -- Rajesh Nair Rajesh Nair wrote: Bas, Apologies for the delayed response! Our setup is a complex set of components with a java component inserting records and tcl based RESTful service fetching the records back. I have isolated this issue to a

Re: [AOLSERVER] ns_db and multibyte support

2008-04-09 Thread Rajesh nair
e record inserted in mysql is not correct. This is verified by viewing the record in mysql query browser as well as fetching it from a java program Hoping to get any pointers here-- -- Rajesh Nair Bas Scheffers wrote: Some questions to help us, and maybe give you some hints as to what  might be wr

[AOLSERVER] ns_db and multibyte support

2008-04-02 Thread Rajesh nair
to do so. Any pointers? Thanks in advance-- -- Rajesh Nair -- AOLserver - http://www.aolserver.com/ To Remove yourself from this list, simply send an email to <[EMAIL PROTECTED]> with the body of "SIGNOFF AOLSERVER" in the email message. You can leave the Subject: field of your email blank.

Re: [AOLSERVER] Calling mysql procedure using nsmysql

2007-12-28 Thread Rajesh nair
just try the driver with CLIENT_MULTI_RESULT always set? -- ReC *From:* AOLserver Discussion [mailto:[EMAIL PROTECTED] *On Behalf Of *Rajesh nair *Sent:* Wednesday, December 26, 2007 9:22 AM *To:* AOLS

Re: [AOLSERVER] Calling mysql procedure using nsmysql

2007-12-26 Thread Rajesh nair
ns_param CLIENT_MULTI_RESULT 1 # Database pools accessible by server ns_section "ns/server/${servername}/db" ns_param defaultpool "mysqlpool" ns_param pools * But this did not work! Any pointers would be greatly appr

Re: [AOLSERVER] ns_db sp_* API not working with MS SQL server 2005

2007-12-18 Thread Rajesh nair
all the rest of the ns_db sp_* APIs will not work for MS SQL Server 2005). I did notice that nsfreetds wiki <http://panoptic.com/wiki/aolserver/Nsfreetds_FAQ> mentions that ns_db sp_* API is incomplete. Btw, I am using AOLServer 4.5 and the nsfreetds version is the 0.4 --- Rajesh Nair

[AOLSERVER] ns_db sp_* API not working with MS SQL server 2005

2007-12-17 Thread Rajesh Nair
ny alternate way of doing this? I did find that I was able to execute a stored procedure via ns_db exec $dbhandle "exec myproc @param='980'" but in this case I am unable to get the return value from the stored procedure. Also not sure if this is the right way to execute a sto