• LightDB - libpq支持匿名块绑定参数


    LightDB 从23.4开始,支持使用绑定参数的方式执行oracle匿名块。绑定参数支持的参数个数为65535(libpq)。
    之前版本会报如下错误:there is no parameter $1

    下面介绍通过libpq 执行带绑定参数的匿名块。

    使用案例

    *
     * src/test/examples/lt_testlibpq.c
     *
     *
     * lt_testlibpq.c
     *		this test program shows to use LIBPQ to exec dostmt with bind param
     *
     */
    #include 
    #include 
    #include "libpq-fe.h"
    
    static void
    exit_nicely(PGconn *conn)
    {
        PQfinish(conn);
        exit(1);
    }
    
    int
    main(int argc, char **argv)
    {
        const char *conninfo;
        PGconn     *conn;
        PGresult   *res;
        const char *paramValues[10];
        Oid paramTypes[10];
    	int			nFields;
    	int			i,
    				j;
    
        if (argc > 1)
            conninfo = argv[1];
        else
            conninfo = "dbname = postgres";
    
        
        conn = PQconnectdb(conninfo);
    
        
        if (PQstatus(conn) != CONNECTION_OK)
        {
            fprintf(stderr, "Connection to database failed: %s",
                    PQerrorMessage(conn));
            exit_nicely(conn);
        }
    
    
        res = PQexec(conn, "create table test_dostmt(key1 int, key2 text);");
        if (PQresultStatus(res) != PGRES_COMMAND_OK)
        {
            fprintf(stderr, "SET failed: %s", PQerrorMessage(conn));
            PQclear(res);
            exit_nicely(conn);
        }
    
        PQclear(res);
    
        res = PQexec(conn, "insert into test_dostmt values(1,'a');");
        if (PQresultStatus(res) != PGRES_COMMAND_OK)
        {
            fprintf(stderr, "SET failed: %s", PQerrorMessage(conn));
            PQclear(res);
            exit_nicely(conn);
        }
    
        PQclear(res);
    
        paramTypes[0] = 23;
        paramValues[0] = "1";
    
        printf("update test_dostmt key2 to 'test_dostmt'\n");
        res = PQexecParams(conn, "begin\
                     begin\
                            update test_dostmt set key2 =  'test_dostmt'  where key1 =  $1  ;\
                     end;\
             end;", 1, paramTypes, paramValues, NULL, NULL, 0);
    
        if (PQresultStatus(res) != PGRES_COMMAND_OK)
        {
            fprintf(stderr, "SET failed: %s", PQerrorMessage(conn));
            PQclear(res);
            exit_nicely(conn);
        }
    
        PQclear(res);
    
        printf("get test_dostmt key2 \n");
        res = PQexec(conn, "select key2 from test_dostmt where key1=1;");
        if (PQresultStatus(res) != PGRES_TUPLES_OK)
        {
            fprintf(stderr, "SET failed: %s", PQerrorMessage(conn));
            PQclear(res);
            exit_nicely(conn);
        }
    
    	nFields = PQnfields(res);
    
    	/* print out the instances */
    	for (i = 0; i < PQntuples(res); i++)
    	{
    		for (j = 0; j < nFields; j++)
    			printf("%s: %s", PQfname(res, j), PQgetvalue(res, i, j));
    		printf("\n");
    	}
    
        PQclear(res);
    
    
        printf("update test_dostmt key2 to 'test_dostmt_new'\n");
        paramTypes[0] = 23;
        paramValues[0] = "1";
        paramTypes[1] = 25;
        paramValues[1] = "test_dostmt1";
        res = PQexecParams(conn, " \
                    declare\
                        id int := $1; \
                        val text := $2; \
                    begin\
                        begin\
                            val = val || '_new'; \
                            update  test_dostmt set key2 = val where key1 = id  ;\
                        end;\
             end;", 2, paramTypes, paramValues, NULL, NULL, 0);
    
        if (PQresultStatus(res) != PGRES_COMMAND_OK)
        {
            fprintf(stderr, "SET failed: %s", PQerrorMessage(conn));
            PQclear(res);
            exit_nicely(conn);
        }
    
        PQclear(res);
    
        printf("get test_dostmt key2 \n");
        res = PQexec(conn, "select key2 from test_dostmt where key1=1;");
        if (PQresultStatus(res) != PGRES_TUPLES_OK)
        {
            fprintf(stderr, "SET failed: %s", PQerrorMessage(conn));
            PQclear(res);
            exit_nicely(conn);
        }
    
    
    	nFields = PQnfields(res);
    	/* print out the instances */
    	for (i = 0; i < PQntuples(res); i++)
    	{
    		for (j = 0; j < nFields; j++)
    			printf("%s: %s", PQfname(res, j), PQgetvalue(res, i, j));
    		printf("\n");
    	}
    
        PQclear(res);
    
    
        res = PQexec(conn, "drop table test_dostmt;");
        if (PQresultStatus(res) != PGRES_COMMAND_OK)
        {
            fprintf(stderr, "SET failed: %s", PQerrorMessage(conn));
            PQclear(res);
            exit_nicely(conn);
        }
    
        PQclear(res);
    
        PQfinish(conn);
    
        return 0;
    }
    
    • 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
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170

    注意点

    需要注意的是,在使用PQexecParams或者PQprepare时必须传入paramTypes才能支持匿名块绑定参数,不然会报如下错误:ERROR: bind message supplies 1 parameters, but prepared statement "" requires 0

  • 相关阅读:
    常用百宝箱——日志处理
    Kafka知识点整理
    RabbitMQ手动ACK与死信队列
    C语言实现八种功能的通讯录(添加、删除、查找、修改、显示、排序、退出、清空)
    【OpenCV】红绿灯识别 轮廓识别 C++ OpenCV 案例实现
    java http
    STM32微控制 -STM32命名规则-STM32寄存器缩写列表-STM32存储器和总线架构
    Nginx高可用 - Keepalived安装部署
    三.pandas基础
    解读Gartner2022年组装式应用报告:从组装式企业到组装式应用
  • 原文地址:https://blog.csdn.net/qq_17713935/article/details/133745317