Re: double quotes inside VBA string ?

Поиск
Список
Период
Сортировка
От Jeff Eckermann
Тема Re: double quotes inside VBA string ?
Дата
Msg-id d6fnoj$2d5c$1@news.hub.org
обсуждение исходный текст
Ответ на double quotes inside VBA string ?  (Zlatko Matić <zlatko.matic1@sb.t-com.hr>)
Список pgsql-general
""Zlatko Mati�"" <zlatko.matic1@sb.t-com.hr> wrote in message
news:001d01c55bab$87607cf0$99301dc3@zlatkovyfkpgz6...
Hello.
I have a problem when working with MS Access/PostgreSQL.
Namely,  as PostgreSQL syntax uses doble quotes for table names and field
names,  when I write it as a string of a pass-through query or Command text
of ADO Command object it looks like:
"select * from public."Customers""
and VBA considers that the first quote after public. is the end of
statement.

How to solve it ?

This question is OT really, but...
Make your command string something like:
"select * from public." & chr(34) & "Customers" & chr(34).

Better yet, change the table names to be all lower case.  Access won't care
at all, and your life with PostgreSQL will be easier.




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

Предыдущее
От: Adem HUR
Дата:
Сообщение: OLAP with PostgreSQL
Следующее
От: Hugo
Дата:
Сообщение: Re: Newbie question