Re: Query will not work - SOLVED

Karl DeSaulniers <[email protected]>
Newsgroups gmane.comp.php.database
Message-ID <[email protected]>
$sql13 = "UPDATE `Customers` SET `Lname` = 'Barnet',  `City` =  
'Lakewood',  `State` = 'NJ' WHERE `Cust_Num` = 1089";

$result13 = mysqli_query($cxn, $sql13);

if(mysqli_num_rows($result13)> 0)
{
   $row_cnt = mysqli_num_rows($result13);
   echo "row count result13 is $row_cnt<br />";
}

else
{
echo "Ouch result13<br />";
}

mysqli_free_result($result13);

$sql1 = "select * FROM `Customers` ORDER BY `Cust_Num`";

$result1 = mysqli_query($cxn, $sql1);

if(mysqli_num_rows($result1)> 0)
{
$row_cnt = mysqli_num_rows($result1);
echo "Row count result1 is $row_cnt<br />";
}

else
{
echo "Ouch result1<br />";
}

Try that..

Best,
Karl


On Feb 2, 2013, at 8:08 PM, Ethan Rosenberg, PhD wrote:

> I  must be missing something fundamental!!
>
> Here is a code snippet:
>
> $sql13 = " UPDATE Customers SET Lname = 'Barnet',  City =  
> 'Lakewood',  State = 'NJ' WHERE Cust_Num = 1089";
>
> $result13 = mysqli_query($cxn, "UPDATE Customers SET Lname =  
> 'Bleich',  City = 'Lakewood',  State = 'NJ' WHERE Cust_Num = 1089");
>
> if($row_cnt = mysqli_num_rows($result13)!= 0)
> {
>   $row_cnt = mysqli_num_rows($result13);
>   echo "row count result13 is $row_cnt<br />";
> }
>
> else
> {
> echo "Ouch result13<br />";
> }
>
> mysqli_free_result($result13);
>
> $sql1 = "select Cust_Num, Fname, Lname, Street, City, State, Zip,  
> Phone, Notes from Customers order by Cust_Num";
>
> $result1 = mysqli_query($cxn, $sql1);
>
> if($row_cnt = mysqli_num_rows($result1)!= 0)
> {
> $row_cnt = mysqli_num_rows($result1);
> echo "Row count result1 is $row_cnt<br />";
> }
>
> else
> {
> echo "Ouch result1<br />";
> }
>
> Here are my results:
>
>
> Ouch result13
>
> Row count result1 is 45
>
> What am I doing wrong??
>
> Ethan
> =============
>
>
> I was using the "worker@localhost", which did not have the Update  
> privilege. Added the privilege that, and everything worked.
>
> Sorry for bothering you with trivia.
>
> Ethan
>
>
>
> -- 
> PHP Database Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>

Karl DeSaulniers
Design Drumm
http://designdrumm.com


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.