PostgreSQL
 sql >> Baza danych >  >> RDS >> PostgreSQL

Podaj przygotowaną instrukcję z tablicą

Nie, nie jest. Wstawiłeś tekst Tablica... jeśli typem $kolumny jest tekst, który powinien przeczytać Twój kod

$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)));

lub jeśli zdefiniowałeś $kolumnę jako text[], co jest dozwolone w postgresql jako tablica, kod powinien przeczytać

$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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Serwer PostgreSQL nie zamykał się w systemie Lion (Mac OS 10.7)

  2. Postgresql COPY CSV ERROR:dodatkowe dane po ostatniej oczekiwanej kolumnie

  3. Jak wylistować rekordy z datą z ostatnich 10 dni?

  4. Plan wyjaśniania SQL:co to jest Materialise?

  5. Wyświetlanie obrazu w IReports przy użyciu PostgreSql