sql >> Databáze >  >> RDS >> PostgreSQL

Dodejte připravený příkaz s polem

Ne není, vložili jste text Array... pokud je typ $column text, který by měl váš kód číst

$tag    =  array('item1', 'item2', 'item3');

// Prepare a query for execution
$result = pg_prepare($dbconn, "my_query", "INSERT INTO $table ($column) VALUES ($1)");

// Execute the prepared query.  Note that it is not necessary to escape
// the string "Joe's Widgets" in any way
foreach( $tag as $i )
    $result = pg_execute($dbconn, "my_query", array($i));
/// alternatively you could try this if you really wanna insert a text as array of text without using text[] type - uncomment line below and comment the 2 above
// $result = pg_execute($dbconn, "my_query", array(json_encode($tag)));

nebo pokud jste definovali $column jako text[], což je v postgresql legální jako pole, kód by měl číst

$tag    =  array('item1', 'item2', 'item3');

// Prepare a query for execution
$result = pg_prepare($dbconn, "my_query", "INSERT INTO $table ($column) VALUES ($1)");

// Execute the prepared query.  Note that it is not necessary to escape
// the string "Joe's Widgets" in any way
$tmp = json_encode($tag);
$tmp[0] = '{';
$tmp[strlen($tmp) - 1] = '}';
$result = pg_execute($dbconn, "my_query", array($tmp));


  1. Klauzule WHERE poskytuje jiný výsledek, ať už v poddotazu nebo ne

  2. MySQL 5.6 Problém s fulltextovým vyhledáváním při hledání slova v PHP

  3. Největší hodnota ze dvou nebo více polí

  4. Jak nahradit poslední výskyt podřetězce v MYSQL?