Jump to content
php.lv forumi

problēmas ar insert


reiniger

Recommended Posts

Sveiki.

 

Esmu izmēģinājies dažādi, bet vairs nav ideju kā vēl pamēģināt.

 

Mana tabula

 

weigth :  decimal(20,6)

 

Apgraizīju līdz tikai vienai vērtībai. Un nu rakstu precīzu Query bez mainīgiem.

INSERT INTO tabula (`weight`) VALUES ('21.523200')

 

Šis insert ar mysql_query() pievieno ierakstu, bet weight parametrs paliek pa nullēm.

 

Šo pašu ierakstot PHPMyAdmin, viss izpildās kā vajag.

 

Kur varētu būt problēma?

Edited by reiniger
Link to comment
Share on other sites

Atklāju interesantu lietu

 

$sql = "INSERT INTO table (`weight`) VALUES ('{$weight}')";
        
mysql_query($sql); // saglabā svaru

if (mysql_query($sql)) {  // nesaglabā svaru
...
}

 

Pirmais query pieglabā visu kā vajag, bet ja izpildāmā darbība ir iekš if (mysql_query($sql)), tad nepievieno manus decimālos skaitļus.

Edited by reiniger
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...