windows vs2022 c/c++连接操作postgresql数据库 - 增删改查

7 篇文章 0 订阅
6 篇文章 0 订阅

关于环境的配置请参考上一篇文章,本文仅包含示例代码

namespace idealand
{
	typedef int (*PGResultHandler)(PGresult*);

  class DB
  {
  public:
		const char* conn_string = "user=** password=** host=** port=** dbname=** connect_timeout=5";
		const char* set_secure = "SELECT pg_catalog.set_config('search_path', 'public', false)";
		PGconn* conn=0;
		PGresult* res=0;


		void close()
		{
			if(conn) PQfinish(conn); 
		}

		void ouput()
		{
			int nFields, i, j;

			// first, print out the attribute names 
			nFields = PQnfields(res);	for (i = 0; i < nFields; i++) 	printf("%-15s", PQfname(res, i));
			printf("\n");

			// next, print out the rows
                                                      int rows=PQntuples(res);
			for (i = 0; i < rows; i++)
			{
				for (j = 0; j < nFields; j++) printf("%-15s", PQgetvalue(res, i, j));
				printf("\n");
			}
		}

		int exe_select(const char* sql, PGResultHandler handler)
		{
			int r = 0;
			char* cmd = string("DECLARE myportal CURSOR FOR %s", sql);

			conn = PQconnectdb(conn_string); if (PQstatus(conn) != CONNECTION_OK) goto fail;
			/* Set always-secure search path, so malicious users can't take control. */
			res = PQexec(conn, set_secure); if (PQresultStatus(res) != PGRES_TUPLES_OK) { goto fail; } PQclear(res);
			/* Start a transaction block */
			res = PQexec(conn, "BEGIN"); if (PQresultStatus(res) != PGRES_COMMAND_OK) { goto fail; } PQclear(res); 

			res = PQexec(conn, cmd); if (PQresultStatus(res) != PGRES_COMMAND_OK) { goto fail; } PQclear(res);


			res = PQexec(conn, "FETCH ALL in myportal"); if (PQresultStatus(res) != PGRES_TUPLES_OK) { goto fail; }

			if (handler)
			{
				handler(res);
			}
			else
			{
				ouput();
			}

			PQclear(res);

			res = PQexec(conn, "END"); PQclear(res); goto ok;
		  
		fail: IdealandF(cmd); log_show("Postgres failed: %s", PQerrorMessage(conn)); if (res) PQclear(res); close(); return -2;
		ok:	IdealandF(cmd); close(); return 0;
		}

		int exe_insert(const char* sql, PGResultHandler handler)
		{
			int r = 0;
			char* cmd = string("%s RETURNING id;", sql);
			
			conn = PQconnectdb(conn_string); if (PQstatus(conn) != CONNECTION_OK) goto fail;
			/* Set always-secure search path, so malicious users can't take control. */
			res = PQexec(conn, set_secure); if (PQresultStatus(res) != PGRES_TUPLES_OK) { goto fail; } PQclear(res);
			/* Start a transaction block */
			res = PQexec(conn, "BEGIN"); if (PQresultStatus(res) != PGRES_COMMAND_OK) { goto fail; } PQclear(res);

			res = PQexec(conn, cmd); if (PQresultStatus(res) != PGRES_TUPLES_OK) { goto fail; }
			if (handler)
			{
				handler(res);
			}
			else
			{
				r = atoi(PQgetvalue(res, 0, 0));
			}

			PQclear(res);

			res = PQexec(conn, "END"); PQclear(res); goto ok;

		fail:IdealandF(cmd); log_show("Postgres failed: %s", PQerrorMessage(conn)); if (res) PQclear(res); close(); return -2;
		ok:IdealandF(cmd); close(); return r;
		}

		int exe_update_delete(const char* sql, PGResultHandler handler)
		{
			int r = 0;

			conn = PQconnectdb(conn_string); if (PQstatus(conn) != CONNECTION_OK) goto fail;
			/* Set always-secure search path, so malicious users can't take control. */
			res = PQexec(conn, set_secure); if (PQresultStatus(res) != PGRES_TUPLES_OK) { goto fail; } PQclear(res);
			/* Start a transaction block */
			res = PQexec(conn, "BEGIN"); if (PQresultStatus(res) != PGRES_COMMAND_OK) { goto fail; } PQclear(res);

			res = PQexec(conn, sql); if (PQresultStatus(res) != PGRES_COMMAND_OK) { goto fail; }
			if (handler)
			{
				handler(res);
			}
			else
			{
				ouput();
			}

			PQclear(res);

			res = PQexec(conn, "END"); PQclear(res); goto ok;

		fail:log_show("Postgres failed: %s", PQerrorMessage(conn)); if (res) PQclear(res); close(); return -2;
		ok:close(); return r;
		}


  };

}





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

qiuzen

您的资助将帮助我创作更好的作品

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值