Re: [GENERAL] How to join function with a table?

2005-08-05 Thread Pascual De Ruvo
On 8/5/05, Yudie Pg <[EMAIL PROTECTED]> wrote:   I thought simple join like this would work, but it doesn't select * from payment P, datelist(P.date_start , P.date_end)   try select * from payment as p, (select * from datelist('8/1/2005, 8/5/2005')) as date where date..  =  p.

Re: [GENERAL] double quotes inside VBA string ?

2005-05-18 Thread Pascual De Ruvo
If you need to use a double quote inside a VB string, you have to write two double quotes (double double quotes!), so your command will  be something like: "select * from public.""Customers"""  On 5/18/05, Zlatko Matić <[EMAIL PROTECTED]> wrote: Hello. I have a problem when working with