Mysql
 sql >> Baza danych >  >> RDS >> Mysql

PHP MySQL - Jak wstawić domyślną wartość w przygotowanym zestawieniu

Miałem ten sam problem, więc dostosowałem tę odpowiedź https://stackoverflow.com/a/13867665/ 1251063 do przygotowanej instrukcji php:

if(!($stmt = $this->conn->prepare("INSERT INTO mytable (myfield) VALUES (IFNULL(?,DEFAULT(myfield)))"))){
    throw new Exception("Prepare failed: (" . $this->conn->errno . ") " . $this->conn->error);
}

if(!($stmt->bind_param("s",$myfield))) { //$myfield is a variable that can be null, if so the default value for such field will be inserted
    throw new Exception("Bind_param failed: (" . $this->conn->errno . ") " . $this->conn->error);
}

if(!$stmt->execute()) {
    throw new Exception("Execute failed: (" . $stmt->errno . ") " . $stmt->error);
}


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Nie znaleziono metody w klasie

  2. MySQL wstaw wiersz przy zduplikowanym kluczu zaktualizuj wiele kolumn

  3. Jak mogę przerobić moje hasło do MySQL, abym mógł rake db:create on rails?

  4. rejestrowanie szczegółowości mysql 5.7

  5. Zapytanie Mysql GROUP by i ORDER by