Jump to content
php.lv forumi

Mysql query


Wuu

Recommended Posts

Wuu, tu gribi strīdēties arī ar PHP izstrādātājiem?

http://lv2.php.net/function.mysql-query

 

Return Values

 

For SELECT, SHOW, DESCRIBE, EXPLAIN and other statements returning resultset, mysql_query() returns a resource on success, or FALSE on error.

 

For other type of SQL statements, INSERT, UPDATE, DELETE, DROP, etc, mysql_query() returns TRUE on success or FALSE on error.

 

The returned result resource should be passed to mysql_fetch_array(), and other functions for dealing with result tables, to access the returned data.

 

Use mysql_num_rows() to find out how many rows were returned for a SELECT statement or mysql_affected_rows() to find out how many rows were affected by a DELETE, INSERT, REPLACE, or UPDATE statement.

 

mysql_query() will also fail and return FALSE if the user does not have permission to access the table(s) referenced by the query.

Link to comment
Share on other sites

Blin ka lai jums iestāsta ERROR metas āra kad mysql neatgriež nekādus parametrus ,kad query neko neatrod jobcik!

doh, acīmredzot līku SQL kveriju izveido no datiem (x un y), kad tas neko neatgriež. Un ja jau ir kļūda kverijā, tad loģiski ka neko neatgriezīs.

Un kā lai tev iestāsta - RTFM. codez jau skaidri un gaiši noquotēja.

mysql_query() returns TRUE on success or FALSE on error.

Un viena no lietām, ko empty dara, pārbauda uz FALSE vērtību padoto argumentu.

 

Skaidrīte?

Nevajag līkus SQL pieprasījumus veidot un vainot php.

Link to comment
Share on other sites

Skaidrīte vai neskaidrīte empty tapat jalieto tad viss ir ok...

p.s.

 

if (mysql_error()) {f(814,'center'); echo 'MySql Error:'.mysql_errno().':'. mysql_error(); f_(); }
mysql_close ($link);

 

šitas man stāv visu scriptu beigās visu laiku!

Edited by Wuu
Link to comment
Share on other sites

mysql_error ir jālieto pēc katra kverija uzreiz. Ja tu pēc kverija izsaukci citu kveriju, tad mysql_error pārbaudīs tikai otrā kverija kļūdas - pirmā kverija kļūdas tas aizmirsīs.

Ja nepatīkt mysql_error, tad izdari echo "SELECT ..." mysql_query vietā uz tā "vainīgā" kverija, kurš tev tukšu atgriež. Un iekopē šeit to, ko tev izvada.

Link to comment
Share on other sites

  • 3 months later...

Kāpēc šis strādā?

$result = mysql_query('select id from users where id = '.$id.' && active IS NULL limit 1;');

bet šis nē

$result = mysql_query('select id from users where id = '.$id.' && active = NULL limit 1;');

Edited by Wuu
Link to comment
Share on other sites

Kāpēc šis strādā?

$result = mysql_query('select id from users where id = '.$id.' && active IS NULL limit 1;');

bet šis nē

$result = mysql_query('select id from users where id = '.$id.' && active = NULL limit 1;');

 

Lasi salīdzināšana ar NULL, tur ir ar visiem piemēriem.

 

Gints Plivna

http://datubazes.wordpress.com

Link to comment
Share on other sites

×
×
  • Create New...