Re: 7.3beta and ecpg

Поиск
Список
Период
Сортировка
От Zeugswetter Andreas SB SD
Тема Re: 7.3beta and ecpg
Дата
Msg-id 46C15C39FEB2C44BA555E356FBCD6FA4961E7E@m0114.s-mxs.net
обсуждение исходный текст
Ответ на 7.3beta and ecpg  (Michael Meskes <meskes@postgresql.org>)
Ответы Re: 7.3beta and ecpg  (Michael Meskes <meskes@postgresql.org>)
Список pgsql-hackers
> Actually there is one more problem. The backend introduced the EXECUTE
> command just recently. However, this clashes with the embedded SQL
> EXECUTE command. Since both may be called just with EXECUTE <name>,
> there is no way to distinguish them.
>
> I have no idea if there's a standard about execution of a plan but
> couldn't/shouldn't it be named "EXECUTE PLAN" instead of just
> "EXECUTE"?

I know this is not really related, but wouldn't the plan be to make
ecpg actually use the backend side "execute ..." now that it is available ?

ecpg needs eighter 'execute :idvar' or 'execute id', so either idvar is a
declared variable or id a statement id. I don't know if that is something a
parser can check though :-(

For now, I would leave "exec sql execute" do the ecpg thing if that is possible.
If you want to use the backend side functionality you would need to:
exec sql prepare ex1 from 'execute id';
exec sql execute ex1;

Andreas


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

Предыдущее
От: Michael Meskes
Дата:
Сообщение: Re: 7.3beta and ecpg
Следующее
От: Manfred Koizar
Дата:
Сообщение: Re: Proposal: Solving the "Return proper effected tuple count from complex commands [return]" issue