Skip to content

Commit

Permalink
fixed ODBC-52. Cannot include a comma inside a delimited string as a …
Browse files Browse the repository at this point in the history
…SP parameter
  • Loading branch information
alexpotapchenko committed Dec 5, 2008
1 parent d594ab8 commit 0dab28a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IscDbc/IscConnection.cpp
Expand Up @@ -458,7 +458,7 @@ int IscConnection::buildParamProcedure ( char *& string, int numInputParam )
delimiter = *ptCh;
++ptCh; // '\''
ptSrc = ptCh;
while ( *ptCh && *ptCh != ',' && *ptCh != ')' )
while ( *ptCh && *ptCh != ')' )
{
if ( *ptCh == delimiter )
{
Expand Down

0 comments on commit 0dab28a

Please sign in to comment.