Dennis Jenkins <dennis.jenkins@xxxxxxxxxxxxx> writes: > My problem is that a query that should be returning a > row is returning zero rows when I use a parametrized > query. You're passing the wrong parameter value, and probably not declaring it to be the right type either. CHAROID is not the type you think it is (BPCHAROID is what you want), and "CStringGetDatum" is not the way to convert a C string into a char(N) datum. The most bulletproof way to do the latter is to use DirectFunctionCall3 to invoke bpcharin(). regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 3: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faq