Use proper SGML doc entities rather than angle-brackets.
Marco Nenciarini
This commit is contained in:
parent
aff97b1f4e
commit
a20bc9c866
@ -369,7 +369,7 @@ UPDATE sal_emp SET pay_by_quarter = ARRAY[25000,25000,27000,27000]
|
|||||||
<programlisting>
|
<programlisting>
|
||||||
UPDATE sal_emp SET pay_by_quarter[4] = 15000
|
UPDATE sal_emp SET pay_by_quarter[4] = 15000
|
||||||
WHERE name = 'Bill';
|
WHERE name = 'Bill';
|
||||||
</programListing>
|
</programlisting>
|
||||||
|
|
||||||
or updated in a slice:
|
or updated in a slice:
|
||||||
|
|
||||||
|
@ -4154,7 +4154,7 @@ switch (v.sqltype)
|
|||||||
{
|
{
|
||||||
case ECPGt_char:
|
case ECPGt_char:
|
||||||
memset(&var_buf, 0, sizeof(var_buf));
|
memset(&var_buf, 0, sizeof(var_buf));
|
||||||
memcpy(&var_buf, sqldata, (sizeof(var_buf) <= sqllen ? sizeof(var_buf) - 1 : sqllen));
|
memcpy(&var_buf, sqldata, (sizeof(var_buf) <= sqllen ? sizeof(var_buf) - 1 : sqllen));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ECPGt_int: /* integer */
|
case ECPGt_int: /* integer */
|
||||||
@ -4390,7 +4390,7 @@ main(void)
|
|||||||
|
|
||||||
case ECPGt_char:
|
case ECPGt_char:
|
||||||
memset(&var_buf, 0, sizeof(var_buf));
|
memset(&var_buf, 0, sizeof(var_buf));
|
||||||
memcpy(&var_buf, sqldata, (sizeof(var_buf) <= sqllen ? sizeof(var_buf)-1 : sqllen));
|
memcpy(&var_buf, sqldata, (sizeof(var_buf) <= sqllen ? sizeof(var_buf)-1 : sqllen));
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ECPGt_int: /* integer */
|
case ECPGt_int: /* integer */
|
||||||
@ -5871,39 +5871,39 @@ main(void)
|
|||||||
|
|
||||||
/* create */
|
/* create */
|
||||||
loid = lo_create(conn, 0);
|
loid = lo_create(conn, 0);
|
||||||
if (loid < 0)
|
if (loid < 0)
|
||||||
printf("lo_create() failed: %s", PQerrorMessage(conn));
|
printf("lo_create() failed: %s", PQerrorMessage(conn));
|
||||||
|
|
||||||
printf("loid = %d\n", loid);
|
printf("loid = %d\n", loid);
|
||||||
|
|
||||||
/* write test */
|
/* write test */
|
||||||
fd = lo_open(conn, loid, INV_READ|INV_WRITE);
|
fd = lo_open(conn, loid, INV_READ|INV_WRITE);
|
||||||
if (fd < 0)
|
if (fd < 0)
|
||||||
printf("lo_open() failed: %s", PQerrorMessage(conn));
|
printf("lo_open() failed: %s", PQerrorMessage(conn));
|
||||||
|
|
||||||
printf("fd = %d\n", fd);
|
printf("fd = %d\n", fd);
|
||||||
|
|
||||||
rc = lo_write(conn, fd, buf, buflen);
|
rc = lo_write(conn, fd, buf, buflen);
|
||||||
if (rc < 0)
|
if (rc < 0)
|
||||||
printf("lo_write() failed\n");
|
printf("lo_write() failed\n");
|
||||||
|
|
||||||
rc = lo_close(conn, fd);
|
rc = lo_close(conn, fd);
|
||||||
if (rc < 0)
|
if (rc < 0)
|
||||||
printf("lo_close() failed: %s", PQerrorMessage(conn));
|
printf("lo_close() failed: %s", PQerrorMessage(conn));
|
||||||
|
|
||||||
/* read test */
|
/* read test */
|
||||||
fd = lo_open(conn, loid, INV_READ);
|
fd = lo_open(conn, loid, INV_READ);
|
||||||
if (fd < 0)
|
if (fd < 0)
|
||||||
printf("lo_open() failed: %s", PQerrorMessage(conn));
|
printf("lo_open() failed: %s", PQerrorMessage(conn));
|
||||||
|
|
||||||
printf("fd = %d\n", fd);
|
printf("fd = %d\n", fd);
|
||||||
|
|
||||||
rc = lo_read(conn, fd, buf2, buflen);
|
rc = lo_read(conn, fd, buf2, buflen);
|
||||||
if (rc < 0)
|
if (rc < 0)
|
||||||
printf("lo_read() failed\n");
|
printf("lo_read() failed\n");
|
||||||
|
|
||||||
rc = lo_close(conn, fd);
|
rc = lo_close(conn, fd);
|
||||||
if (rc < 0)
|
if (rc < 0)
|
||||||
printf("lo_close() failed: %s", PQerrorMessage(conn));
|
printf("lo_close() failed: %s", PQerrorMessage(conn));
|
||||||
|
|
||||||
/* check */
|
/* check */
|
||||||
@ -5912,7 +5912,7 @@ main(void)
|
|||||||
|
|
||||||
/* cleanup */
|
/* cleanup */
|
||||||
rc = lo_unlink(conn, loid);
|
rc = lo_unlink(conn, loid);
|
||||||
if (rc < 0)
|
if (rc < 0)
|
||||||
printf("lo_unlink() failed: %s", PQerrorMessage(conn));
|
printf("lo_unlink() failed: %s", PQerrorMessage(conn));
|
||||||
|
|
||||||
EXEC SQL COMMIT;
|
EXEC SQL COMMIT;
|
||||||
|
Loading…
Reference in New Issue
Block a user