Обсуждение: Searching for all records but integer field is causing problems

Поиск
Список
Период
Сортировка

Searching for all records but integer field is causing problems

От
"Brian Johnson"
Дата:
How do I do a select query for all records?

SELECT * FROM phpgw_categories WHERE cat_name = ? AND cat_owner = ? AND
cat_appname = 'notes'

cat_name = '*' works but cat_owner = '*' gives me an atoi error.

I was hoping to reuse the code segment of SQL that gets called repeatedly
for slightly different purposes but I can't get this to work


Re: Searching for all records but integer field is causing

От
Jason Earl
Дата:
I think that what you want is:

SELECT * FROM phpgw_categories WHERE cat_appname = 'notes';

Jason

"Brian Johnson" <bjohnson@jecinc.on.ca> writes:

> How do I do a select query for all records?
>
> SELECT * FROM phpgw_categories WHERE cat_name = ? AND cat_owner = ? AND
> cat_appname = 'notes'
>
> cat_name = '*' works but cat_owner = '*' gives me an atoi error.
>
> I was hoping to reuse the code segment of SQL that gets called repeatedly
> for slightly different purposes but I can't get this to work
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster