From: | Ragnar Hafstað <gnari(at)simnet(dot)is> |
---|---|
To: | Brian Gunning <brian(dot)gunning(at)3touch(dot)com> |
Cc: | 'Shelby Cain' <alyandon(at)yahoo(dot)com>, pgsql-novice(at)postgresql(dot)org, pgsql-general(at)postgresql(dot)org, pgsql-jdbc(at)postgresql(dot)org |
Subject: | Re: [JDBC] MS Access to PostgreSQL |
Date: | 2005-03-12 09:35:46 |
Message-ID: | 1110620146.28803.9.camel@localhost.localdomain |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general pgsql-jdbc pgsql-novice |
On Fri, 2005-03-11 at 17:52 +0000, Brian Gunning wrote:
[rearranged quoting]
> From: pgsql-jdbc-owner(at)postgresql(dot)org
> --- William Shatner <shatner(dot)william(at)gmail(dot)com> wrote:
> > I have recently migrated from MS Access to
> > PostgreSQL.Previously I had
> > a SQL command
> >
> > ResultSet aGroupResultSet =
> > aGroupPathStmt.executeQuery(
> > "SELECT \"groupID\",\"fullpath\" FROM
> > \"groups\" WHERE
> > \"fullpath\" Like '" +
> > aPath + "'");
> >
> >
> > where aPath was equal to 'folder\another folder\%'.
> >
> I don't think the problem isn't with the backslashes. They are escaped and
> seem to be working fine e.g. to insert a backslash in Access I had to use
> one escape character ('\\') whereas in PostgreSQL four backslashes ('\\\\')
> are required. The line that inserts the % is as follows...
>
> String aPath = group.getPath() + aOldGroupName + "\\%";
are the backslashes in group.getPath() + aOldGroupName escaped ?
does aGroupPathStmt.executeQuery() escape backslashes ?
did you print the SQL statement to screen or logfile to make sure
what is actually sent to executeQuery() ?
does your language support placeholders ? this kind of problems are
usually easier to deal with with them.
gnari
From | Date | Subject | |
---|---|---|---|
Next Message | Ragnar Hafstað | 2005-03-12 10:13:33 | Re: Checking for schedule conflicts |
Previous Message | Ian Barwick | 2005-03-12 08:40:02 | Re: Hash problem |
From | Date | Subject | |
---|---|---|---|
Next Message | Nikola Milutinovic | 2005-03-12 22:24:53 | How to get automatically generated "id" field |
Previous Message | Simon Moses | 2005-03-12 04:35:25 | Re: preoblem in jdbc postgresql and tomcat |
From | Date | Subject | |
---|---|---|---|
Next Message | Todd Lewis | 2005-03-12 22:50:41 | Re: complex queries |
Previous Message | Sandy Eggi Martedi | 2005-03-12 06:40:31 | Compiling Data Type |