Hello I have a database that has 12 tables. I can select everything from 11 of them but using the same query for the 12th doesn't work. But if i try that query from phpPgAdmin then it works. For example I have this query:
SELECT
"public"."products"."grupi",
"public"."products"."kodartikulli",
"public"."products"."kodifikimartikulli2",
"public"."products"."pershkrimartikulli",
"public"."cmime"."cmimi"
FROM "public"."products"
INNER JOIN "public"."cmime" ON ("public"."products"."kodartikulli"="public"."cmime"."idprodukti")
WHERE "public"."products"."kodartikulli" = 'AS00008'
This works perfectly on phpPgAdmin but when i try it from my app it says:
error: relation "public.cmime" does not exist
Also all the tables have the same privileges. Has anyone encountered this problem? Thank You