sql >> Databáze >  >> RDS >> Mysql

PHP MySQL - Jak vložit výchozí hodnotu do připraveného příkazu

Měl jsem stejný problém, takže jsem tuto odpověď upravil https://stackoverflow.com/a/13867665/ 1251063 do php připravený příkaz:

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. Jaký je hlavní rozdíl mezi Varchar2 a char

  2. Jak nasadit vysoce dostupný Canvas LMS s databázovým clusterem PostgreSQL

  3. 4 způsoby, jak získat definici pohledu pomocí Transact-SQL

  4. PIVOT v sql 2005