2016-05-15 29 views
0

私はユーザーがMySQLデータベースにフィードバックを書くことができる小さなWebアプリケーションを構築しています。MySQL PDOデータベースに書き込むことができません

public function add(Feedback $feedback) { 
     $query = $this->db->prepare('INSERT INTO feedback SET country = :country, country-other = :countryOther, find-out = :findOut, find-out-other = :findOutOther, what-tour = :whatTour, booking-rating = :bookingRating, booking-comments = :bookingComments, checkin-rating = :checkinRating, checkin-comments = :checkinComments, journey-rating = :journeyRating, journey-comments = :journeyComments, guides-informative-rating = :guidesInformativeRating, guides-informative-comments = :guidesInformativeComments, guides-professional-rating = :guidesProfessionalRating, guides-professional-comments = :guidesProfessionalComments, tour-rating = :tourRating, tour-comments = :tourComments, tour-length = :tourLength, recommendation = :recommendation, comments = :comments'); 
     $query->bindValue(':country', $feedback->country()); 
     $query->bindValue(':countryOther', $feedback->countryOther()); 
     $query->bindValue(':findOut', $feedback->findOut()); 
     $query->bindValue(':findOutOther', $feedback->findOutOther()); 
     $query->bindValue(':whatTour', $feedback->whatTour()); 
     $query->bindValue(':bookingRating', $feedback->bookingRating()); 
     $query->bindValue(':bookingComments', $feedback->bookingComments()); 
     $query->bindValue(':checkinRating', $feedback->checkinRating()); 
     $query->bindValue(':checkinComments', $feedback->checkinComments()); 
     $query->bindValue(':journeyRating', $feedback->journeyRating()); 
     $query->bindValue(':journeyComments', $feedback->journeyComments()); 
     $query->bindValue(':guidesInformativeRating', $feedback->guidesInformativeRating()); 
     $query->bindValue(':guidesInformativeComments', $feedback->guidesInformativeComments()); 
     $query->bindValue(':guidesProfessionalRating', $feedback->guidesProfessionalRating()); 
     $query->bindValue(':guidesProfessionalComments', $feedback->guidesProfessionalComments()); 
     $query->bindValue(':tourRating', $feedback->tourRating()); 
     $query->bindValue(':tourComments', $feedback->tourComments()); 
     $query->bindValue(':tourLength', $feedback->tourLength()); 
     $query->bindValue(':recommendation', $feedback->recommendation()); 
     $query->bindValue(':comments', $feedback->comments()); 

     // $query = $this->db->prepare('INSERT INTO feedback (country) VALUES (:country)'); 
     // $country = $feedback->country(); 
     // echo $country; 
     // $query->bindParam(':country', $country); 
     $query->execute(); 
    } 

コメント行は、私はそれがDB上で書いていたかどうかを確認するために行ったテストを示し、そうではありません。ここでは、フィードバックを書くの面倒を見る機能があります。

したがって、問題は私にエラーメッセージが表示されないということです。私はデータベースに正しく接続されていると確信しています(この同じ機能は、はるかに単純なDBを含むプロジェクトの最初のドローで作業していました)。

$ feedbackオブジェクトにすべての正しいパラメータが含まれていることを確認しました。

ここで私の間違いは何ですか?ご協力いただきありがとうございます。

+0

あなたの '' INSERT INTO''文は間違っています。 '' SET''は '' UPDATE''文で使用されます。 http://www.w3schools.com/sql/sql_insert.aspをご覧ください。 – ub3rst4r

+0

エラーメッセージが表示されない理由は、['' PDO :: ERRMODE_SILENT''](http://php.net/manual/en /pdo.error-handling.php)はデフォルトで設定されています – ub3rst4r

答えて

0

OK私はかなり愚かでなければなりません。私はDB構造の '_'の ' - 'をすべて変更することでこの問題を解決しました。通常、最も簡単なソリューションが動作します。

関連する問題