#include "lib/stringinfo.h"
Ir al código fuente de este archivo.
Funciones |
void | pq_beginmessage (StringInfo buf, char msgtype) |
void | pq_sendbyte (StringInfo buf, int byt) |
void | pq_sendbytes (StringInfo buf, const char *data, int datalen) |
void | pq_sendcountedtext (StringInfo buf, const char *str, int slen, bool countincludesself) |
void | pq_sendtext (StringInfo buf, const char *str, int slen) |
void | pq_sendstring (StringInfo buf, const char *str) |
void | pq_sendint (StringInfo buf, int i, int b) |
void | pq_sendint64 (StringInfo buf, int64 i) |
void | pq_sendfloat4 (StringInfo buf, float4 f) |
void | pq_sendfloat8 (StringInfo buf, float8 f) |
void | pq_endmessage (StringInfo buf) |
void | pq_begintypsend (StringInfo buf) |
bytea * | pq_endtypsend (StringInfo buf) |
void | pq_puttextmessage (char msgtype, const char *str) |
void | pq_putemptymessage (char msgtype) |
int | pq_getmsgbyte (StringInfo msg) |
unsigned int | pq_getmsgint (StringInfo msg, int b) |
int64 | pq_getmsgint64 (StringInfo msg) |
float4 | pq_getmsgfloat4 (StringInfo msg) |
float8 | pq_getmsgfloat8 (StringInfo msg) |
const char * | pq_getmsgbytes (StringInfo msg, int datalen) |
void | pq_copymsgbytes (StringInfo msg, char *buf, int datalen) |
char * | pq_getmsgtext (StringInfo msg, int rawbytes, int *nbytes) |
const char * | pq_getmsgstring (StringInfo msg) |
void | pq_getmsgend (StringInfo msg) |
Documentación de las funciones
void pq_beginmessage |
( |
StringInfo |
buf, |
|
|
char |
msgtype |
|
) |
| |
void pq_begintypsend |
( |
StringInfo |
buf | ) |
|
void pq_copymsgbytes |
( |
StringInfo |
msg, |
|
|
char * |
buf, |
|
|
int |
datalen |
|
) |
| |
void pq_endmessage |
( |
StringInfo |
buf | ) |
|
bytea* pq_endtypsend |
( |
StringInfo |
buf | ) |
|
int pq_getmsgbyte |
( |
StringInfo |
msg | ) |
|
const char* pq_getmsgbytes |
( |
StringInfo |
msg, |
|
|
int |
datalen |
|
) |
| |
void pq_getmsgend |
( |
StringInfo |
msg | ) |
|
float4 pq_getmsgfloat4 |
( |
StringInfo |
msg | ) |
|
float8 pq_getmsgfloat8 |
( |
StringInfo |
msg | ) |
|
unsigned int pq_getmsgint |
( |
StringInfo |
msg, |
|
|
int |
b |
|
) |
| |
int64 pq_getmsgint64 |
( |
StringInfo |
msg | ) |
|
const char* pq_getmsgstring |
( |
StringInfo |
msg | ) |
|
char* pq_getmsgtext |
( |
StringInfo |
msg, |
|
|
int |
rawbytes, |
|
|
int * |
nbytes |
|
) |
| |
void pq_putemptymessage |
( |
char |
msgtype | ) |
|
void pq_puttextmessage |
( |
char |
msgtype, |
|
|
const char * |
str |
|
) |
| |
void pq_sendbyte |
( |
StringInfo |
buf, |
|
|
int |
byt |
|
) |
| |
void pq_sendbytes |
( |
StringInfo |
buf, |
|
|
const char * |
data, |
|
|
int |
datalen |
|
) |
| |
void pq_sendcountedtext |
( |
StringInfo |
buf, |
|
|
const char * |
str, |
|
|
int |
slen, |
|
|
bool |
countincludesself |
|
) |
| |
void pq_sendfloat4 |
( |
StringInfo |
buf, |
|
|
float4 |
f |
|
) |
| |
void pq_sendfloat8 |
( |
StringInfo |
buf, |
|
|
float8 |
f |
|
) |
| |
void pq_sendint |
( |
StringInfo |
buf, |
|
|
int |
i, |
|
|
int |
b |
|
) |
| |
void pq_sendint64 |
( |
StringInfo |
buf, |
|
|
int64 |
i |
|
) |
| |
void pq_sendstring |
( |
StringInfo |
buf, |
|
|
const char * |
str |
|
) |
| |
void pq_sendtext |
( |
StringInfo |
buf, |
|
|
const char * |
str, |
|
|
int |
slen |
|
) |
| |