Re: [INTERFACES] Problem with PreparedStatement - Mailing list pgsql-interfaces

From Oliver Elphick
Subject Re: [INTERFACES] Problem with PreparedStatement
Date
Msg-id 199910181822.TAA00590@linda.lfix.co.uk
Whole thread Raw
In response to Problem with PreparedStatement  ("Esteban Chiner Sanz" <echiner@tissat.es>)
List pgsql-interfaces
"Esteban Chiner Sanz" wrote: >I'm trying to do this: > >if (counter != -1) /* No ha habido ningún error */ >
{>                PreparedStatement pstmt=null; >                sql="insert into tar_historico values (?,?,?)"; >
         razon="<br>Query: " + sql; >                try { >                    pstmt = con.prepareStatement(sql); >
               pstmt.setString(1,Integer.toString(counter)); >                    pstmt.setString(2,"1"); >
      pstmt.setTimestamp(3,new Timestamp(new >java.util.Date().getTime())); >
pstmt.executeUpdate(sql);>                    pstmt.close(); >                    con.close(); >                } >
>ButI get this error message in the PostgreSQL log: > >   query: insert into tar_historico values (?,?,?) >   ERROR:
parser:parse error at or near "," > >What could be the problem? I've tried everything and I haven't found the >solution
yet.Please, help. >Thanks in advance,
 
How about:   sql="insert into tar_historico values ('?','?','?')";

--      Vote against SPAM: http://www.politik-digital.de/spam/                ========================================
Oliver Elphick                                Oliver.Elphick@lfix.co.uk
Isle of Wight                              http://www.lfix.co.uk/oliver              PGP key from public servers; key
ID32B8FAA1                ========================================    "Delight thyself also in the LORD; and he shall
give     thee the desires of thine heart."          Psalms 37:4
 




pgsql-interfaces by date:

Previous
From: Gerhard Hintermayer
Date:
Subject: Support for Tcl/Tk 8.2
Next
From: Bruce Stephens
Date:
Subject: Re: [INTERFACES] Support for Tcl/Tk 8.2