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

Wstaw duży obiekt binarny (BLOB) do PostgreSQL za pomocą libpq ze zdalnej maszyny

Istnieją 2 rodzaje blobów w PostgreSQL — BYTEA i Large Objects . Odradzałbym używanie dużych obiektów, ponieważ nie można ich połączyć ze stołami.

Dla BYTEA użyjesz czegoś takiego w libpq:

PGresult* put_data_to_tablename(
  PGconn* conn,
  int32_t id,
  int data_size,
  const char* const data
) {
  PGresult* result;
  const uint32_t id_big_endian = htonl((uint32_t)id);
  const char* const paramValues[] = { &id_big_endian, data };
  const int nParams = sizeof(paramValues) / sizeof(paramValues[0]);
  const int paramLenghts[] = { sizeof(id_big_endian), data_size };
  const int paramFormats[] = { 1, 1 }; /* binary */
  const int resultFormat = 0; /* text */

  result = PQexecParams(
    conn,
    "insert into tablename (id, data) values ($1::integer, $2::bytea)",
    nParams,
    NULL, /* Types of parameters, unused as casts will define types */
    paramValues,
    paramLenghts,
    paramFormats,
    resultFormat
  );
  return result;
}


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Zapytanie o „przebieg” kolejnych kolumn w Postgres

  2. Projekt bazy danych do tworzenia tabel w locie

  3. Czy mogę wybiórczo utworzyć kopię zapasową bazy danych Postgres, tylko z certian tabelami?

  4. Sail.js wiele połączeń na starcie

  5. Laravel gdzie warunek - zapytanie pgsql