aboutsummaryrefslogtreecommitdiff
path: root/sandbox/pgsql/pgsql.c
diff options
context:
space:
mode:
authorMichael McVady <femtonaut@gmail.com>2021-09-23 00:22:10 -0500
committerMichael McVady <femtonaut@gmail.com>2021-09-23 00:22:10 -0500
commit40441e01b6e73a0a1d7f06377b3607f151aed65b (patch)
treef78149c19b55af7dcaec3d8de165c4c8b9186fab /sandbox/pgsql/pgsql.c
parent3595c5264297f14010eb8dc6f0a7fd31dc186e8b (diff)
Add pgsql sandbox
Diffstat (limited to 'sandbox/pgsql/pgsql.c')
-rw-r--r--sandbox/pgsql/pgsql.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/sandbox/pgsql/pgsql.c b/sandbox/pgsql/pgsql.c
new file mode 100644
index 0000000..ffbae9f
--- /dev/null
+++ b/sandbox/pgsql/pgsql.c
@@ -0,0 +1,28 @@
+#include <stdio.h>
+
+#include <libpq-fe.h>
+#include <pg_config.h>
+
+int main() {
+ PGconn* conn;
+ PGresult* result;
+
+ conn = PQconnectdb("host=localhost port=5432 dbname=clog password=p0stgres user=postgres");
+
+ if(PQstatus(conn) != CONNECTION_OK) {
+ printf("Connection to database failed:%s\n", PQerrorMessage(conn));
+ }
+
+ result = PQexec(conn, "SELECT * FROM ENTRIES");
+
+ PQprintOpt options = {0};
+ options.header = 1; /* Ask for column headers */
+ options.align = 1; /* Pad short columns for alignment */
+ options.fieldSep = "|"; /* Use a pipe as the field separator */
+
+ PQprint(stdout, result, &options);
+
+ PQclear(result);
+ PQfinish(conn);
+}
+