File: test01.cxx

package info (click to toggle)
libpqxx 6.4.5-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 3,992 kB
  • sloc: cpp: 12,634; sh: 4,426; xml: 1,104; makefile: 309; python: 294; ansic: 3
file content (47 lines) | stat: -rw-r--r-- 1,276 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#include <iostream>

#include "test_helpers.hxx"

using namespace pqxx;


namespace
{

// Simple test program for libpqxx.  Open connection to database, start
// a transaction, and perform a query inside it.
void test_001()
{
  connection conn;
  std::cout
	<< "Connected to database." << std::endl
	<< "Backend version: " << conn.server_version() << std::endl
	<< "Protocol version: " << conn.protocol_version() << std::endl;

  // Begin a transaction acting on our current connection.  Give it a human-
  // readable name so the library can include it in error messages.
  work tx{conn, "test1"};

  // Perform a query on the database, storing result rows in R.
  result r( tx.exec("SELECT * FROM pg_tables") );

  // We're expecting to find some tables...
  PQXX_CHECK(not r.empty(), "No tables found.  Cannot test.");

  // Process each successive result row
  for (const auto &c: r)
  {
    // Dump row number and column 0 value to cout.  Read the value using
    // as(), which converts the field to the same type as the default value
    // you give it (or returns the default value if the field is null).
    std::cout
	<< '\t' << to_string(c.num()) << '\t' << c[0].as(std::string{})
	<< std::endl;
  }

  tx.commit();
}


PQXX_REGISTER_TEST(test_001);
} // namespace