Problem updating a large binary field (PostgreSQL, ODBC, VC++)

From: pavel_sorokin(at)lycos(dot)com (Pavel Sorokin)
To: "pgsql-general(at)postgresql(dot)org(dot)pgsql-odbc"(at)postgresql(dot)org
Subject: Problem updating a large binary field (PostgreSQL, ODBC, VC++)
Date: 2004-04-20 22:50:56
Message-ID: 1797ce91.0404201450.418fec79@posting.google.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-odbc

Hello,

I created a table where a record consists of a single field of type
lo. I'm trying to add a new record and store the contents of a file in
it. However, when I call CRecordset.Update() I get the following
exception: "SetPos with data_at_exec not yet supported". My table
doesn't get updated.

Environment: PostgreSQL 7.4.1 on Cygwin, Visual C++ .Net 2003, ODBC
driver 3.520. I pasted my code below (the line that causes the error
is marked). Anyone knows why it doesn't work, and if there's any other
way to do what I want?

TIA,
Pavel

CDatabase db;
CMyTable table(&db);
table.Open();
char* FileName = "c:\\test.txt";
CFile f;
CByteArray ByteArray;

if (f.Open(FileName, CFile::modeRead, &e ))
{
CByteArray ByteArray;
long size = f.GetLength();
ByteArray.SetSize(size);
BYTE *p = ByteArray.GetData();
ZeroMemory(p, size);
long result = f.Read(p, size);

table.AddNew();

if(!(table.m_data.m_hData))
{
::GlobalFree(table.m_data.m_hData);
table.m_data.m_hData = GlobalAlloc(GMEM_MOVEABLE,size);
if(table.m_data.m_hData) // GlobalAlloc could return NULL...
{
table.m_data.m_dwDataLength = size;
LPVOID p2 = ::GlobalLock(table.m_data.m_hData);
memcpy(p2, p, size);
::GlobalUnlock(table.m_data.m_hData);
table.m_data.m_dwDataLength = ::GlobalSize(table.m_data.m_hData);

// mark the record for the update
table.SetFieldDirty(&(table.m_data), true);
table.SetFieldNull(&(table.m_data), false);
}
else
{
AfxMessageBox("Couldn't allocate memory");
}
}

table.Update(); // <-- THIS DOESN'T WORK!

Browse pgsql-general by date

  From Date Subject
Next Message Dann Corbit 2004-04-20 23:16:28 Re: Downgrading from Postgresql 7.4 to 7.1
Previous Message Joseph Shraibman 2004-04-20 22:38:56 [OT] MySQL AB Launches MySQL Cluster

Browse pgsql-odbc by date

  From Date Subject
Next Message Jeff Eckermann 2004-04-21 14:26:41 Re: Dealing with Insert Problems with Access
Previous Message Jeff Eckermann 2004-04-20 14:56:59 Dealing with Insert Problems with Access