compile example

From: "Volosatov Alexander" <rope-walker(at)yandex(dot)ru>
To: pgsql-cygwin(at)postgresql(dot)org
Subject: compile example
Date: 2006-01-25 09:39:03
Message-ID: 43D74737.000003.12307@tide.yandex.ru
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-cygwin

Hi!
Try to compile libpqxx example:
#include <iostream>
#include <pqxx/pqxx>

using namespace std;
using namespace pqxx;

int main()
{
try
{
connection C;
cout << "Connected to " << C.dbname() << endl;
work W(C);
result R = W.exec("SELECT name FROM employee");
cout << "Found " << R.size() << "employees:" << endl;
for (result::const_iterator r = R.begin();
r != R.end();
++r)
{
cout << r[0].c_str() << endl;
}
cout << "Doubling all employees' salaries..." << endl;
W.exec("UPDATE employee SET salary=salary*2");
cout << "Making changes definite: ";
W.commit();
cout << "ok." << endl;
}
catch (const exception &e)
{
cerr << e.what() << endl;
return 1;
}
return 0;
}

Use Dev-Cpp + mingw32.

Have errors:
...
345 C:\Dev-Cpp\include\pqxx\largeobject.hxx `in' was not declared in this scope
345 C:\Dev-Cpp\include\pqxx\largeobject.hxx `out' was not declared in this scope
...
380 C:\Dev-Cpp\include\pqxx\largeobject.hxx there are no arguments to `eback' that depend on a template parameter, so a declaration of `eback' must be available
...
they repeates.

Please help.

Browse pgsql-cygwin by date

  From Date Subject
Next Message jmbigi (sent by Nabble.com) 2006-01-30 06:52:42 Re: pgsql on cygwin problem
Previous Message pobox@verysmall.org 2006-01-23 23:46:01 PostgreSQL 8.1.2 crashes diring import - 8.0.4 does not