Re: More strict bind param count checking

Поиск
Список
Период
Сортировка
От Ludek Finstrle
Тема Re: More strict bind param count checking
Дата
Msg-id 20051215051256.GA21336@soptik.pzkagis.cz
обсуждение исходный текст
Ответ на Re: More strict bind param count checking  (Hiroshi Inoue <inoue@tpf.co.jp>)
Ответы Re: More strict bind param count checking  (Hiroshi Inoue <inoue@tpf.co.jp>)
Список pgsql-odbc
> Hi Ludek, thanks to your recent effort to improve the psqlodbc driver.
> Please let me comment on your patch a little.

Hello,

  your comments are welcome.

> > !         if (ipdopts->allocated == marker_count)
>
> Why are you using the operator '==' not '>=' ?
> AFAIK there's no such limitation.

We have problems with Visual FoxPro. It calls SQLCancel without
FreeStmt(SQL_RESET_PARAMS). It leads to failure becouse next
ExecDirect with fewer parameters in some cases think that it
has data_at_exec (which was parameters from previous).

So I think this could be good prevent againist driver failure.

> > +     if (ipdopts->allocated != marker_count)
>
> Why are you using '!=' not '<' ?

It's the same as previous (only negated).

> > +     ipdopts = SC_get_IPDF(stmt);
> > +     if (ipdopts->allocated != marker_count)
>
> The same comment as the previous one.
> In addtion, the check is not appropriate because Exec_with_parameter_resolved
>  could be called with insufficient parameters.

I take a look at it again.

Thanks for comments

Luf

В списке pgsql-odbc по дате отправления:

Предыдущее
От: Hiroshi Inoue
Дата:
Сообщение: Re: More strict bind param count checking
Следующее
От: "Anoop Kumar"
Дата:
Сообщение: Re: Next development steps?