Re: Sqldf - error message - Mailing list pgsql-sql

From Tom Lane
Subject Re: Sqldf - error message
Date
Msg-id 21320.1258727961@sss.pgh.pa.us
Whole thread Raw
In response to Sqldf - error message  ("Marvelde, Luc te" <L.teMarvelde@nioo.knaw.nl>)
Responses Re: Sqldf - error message  (Pavel Stehule <pavel.stehule@gmail.com>)
List pgsql-sql
"Marvelde, Luc te" <L.teMarvelde@nioo.knaw.nl> writes:
> If I run this SQL query:

>> sqldf("SELECT
> + dbo_tbl_Terrein.RingCentraleNaam,
> + dbo_tbl_Broedsels.BroedselID
> + FROM ((dbo_tbl_BroedselLocatie
> + INNER JOIN dbo_tbl_Broedsels ON dbo_tbl_BroedselLocatie.BroedselID =
> dbo_tbl_Broedsels.BroedselID)
> + INNER JOIN dbo_tbl_Nestkasten ON dbo_tbl_BroedselLocatie.NestkastID =
> dbo_tbl_Nestkasten.NestkastID)
> + INNER JOIN dbo_tbl_Terrein ON dbo_tbl_Nestkasten.TerreinNummer =
> dbo_tbl_Terrein.TerreinNummer
> + WHERE (((dbo_tbl_Terrein.RingCentraleNaam)='Oosterhout a/d Waal'));")

> I get the following message:

> Error in sqliteExecStatement(con, statement, bind.data) : 
>   RS-DBI driver: (error in statement: no such column:
> dbo_tbl_Broedsels.BroedselID)

It looks to me like sqldf is unaware of the rules about identifier
case-folding in Postgres.  That column would come back named
"broedselid", but it's probably looking for "BroedselID".
Or possibly it's expecting the qualifier "dbo_tbl_Broedsels."
to be included in the returned column name.  Either way, you
need to bug sqldf's authors to fix it.
        regards, tom lane


pgsql-sql by date:

Previous
From: "Marvelde, Luc te"
Date:
Subject: Sqldf - error message
Next
From: Pavel Stehule
Date:
Subject: Re: Sqldf - error message