On Thu, Aug 10, 2006 at 11:57:14AM -0400, Harpreet Dhaliwal wrote:
>     EXEC SQL CONNECT TO  'tcp:postgresql://192.168.0.123/xyz' USER jsb

It should work if you omit the quotes or use a variable reference.
Try this:

  EXEC SQL CONNECT TO tcp:postgresql://192.168.0.123/xyz USER jsb;

or

  EXEC SQL BEGIN DECLARE SECTION;
  char *connstr = "tcp:postgresql://192.168.0.123/xyz";
  EXEC SQL END DECLARE SECTION;

  EXEC SQL CONNECT TO :connstr USER jsb;

-- 
Michael Fuhr

---------------------------(end of broadcast)---------------------------
TIP 4: Have you searched our list archives?

               http://archives.postgresql.org

Reply via email to