- Desde
- 28 Abr 2014
- Mensajes
- 37
Buenas estoy intentando hacer un insert desde mysql 5.1.8 y me da el siguiente error
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '; INSERT INTO usuarios VALUES ('1', 'root', 'roo', 'ema@em.com', '00-00-0000', ' at line 1' in /home/u684697563/public_html/install1.php:26 Stack trace: #0 /home/u684697563/public_html/install1.php(26): PDOStatement->execute() #1 {main} thrown in /home/u684697563/public_html/install1.php on line 26
La sintaxis SQL que estoy utilizando es la siguiente:
$sentencia = $con->prepare ("USE $db; INSERT INTO usuarios VALUES ('1', 'root', 'roo', 'ema@em.com', '00-00-0000', 'activado', '12345')");
$sentencia->execute();
Alaqien que me pueda ayudar gracias
Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '; INSERT INTO usuarios VALUES ('1', 'root', 'roo', 'ema@em.com', '00-00-0000', ' at line 1' in /home/u684697563/public_html/install1.php:26 Stack trace: #0 /home/u684697563/public_html/install1.php(26): PDOStatement->execute() #1 {main} thrown in /home/u684697563/public_html/install1.php on line 26
La sintaxis SQL que estoy utilizando es la siguiente:
$sentencia = $con->prepare ("USE $db; INSERT INTO usuarios VALUES ('1', 'root', 'roo', 'ema@em.com', '00-00-0000', 'activado', '12345')");
$sentencia->execute();
Alaqien que me pueda ayudar gracias