aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/scripts/test_ports/vcpkg-ci-libpqxx/project/main.cpp
blob: ba1f273f983ea39e72c0e2a82087cc04fde6eff6 (plain)
1
2
3
4
5
6
7
8
#include <pqxx/pqxx>

int main()
{
    pqxx::connection cx{"postgresql://vcpkg@localhost/tests"};
    pqxx::work tx{cx};
    return 0;
}