Re: MySQL Wildcard

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Karl DeSaulniers wrote:

> Hello All,
> What I want to do is get all the fields from a table without
> specifying which ID to grab from.
> I am trying to implement a wildcard in my query. What am I doing
> wrong? I keep getting...
> 
> "Warning: mysql_fetch_array(): supplied argument is not a valid MySQL
> result resource"
> 
> CODE:::::
> 
> function getOptGrps($ID){
>        if ($ID == "All") {
>           $ID = "%"; // % = MySQL multi character wildcard
>        }
>        $q = "SELECT * FROM ".OPT_GRPS_TABLE." WHERE OptGrpID LIKE
> '$ID' ";
>        $result = $this->query($q);
>        /* Error occurred, return given name by default */
>        if(!$result || (mysql_numrows($result) < 1)){
>           return NULL;
>        }
>        /* Return result array */
>        $array_results = mysql_fetch_array($result);
>        return $array_results;
>     }
> 
> AND this does not work either
> 
> function getOptGrps(){
>        $q = "SELECT * FROM ".OPT_GRPS_TABLE;
>        $result = $this->query($q);
>        /* Error occurred, return given name by default */
>        if(!$result || (mysql_numrows($result) < 1)){
>           return NULL;
>        }
>        /* Return result array */
>        $array_results = mysql_fetch_array($result);
>        return $array_results;
>     }
> 
> TIA,

Well, I'd hazard a guess that OPT_GRPS_TABLE may not be what you think it
is; in any case, the first step in debugging would be to echo your query $q
and see what it really contains. And does the class that handles your db
query have an error reporting function? If so, try using it.

Note that to retrieve all records, you could skip the WHERE, or use WHERE 1

Cheers
-- 
David Robley

Machine-independent: does not run on any existing machine.
Today is Pungenday, the 55th day of Discord in the YOLD 3176. 


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [PHP Users]     [Postgresql Discussion]     [Kernel Newbies]     [Postgresql]     [Yosemite News]

  Powered by Linux