forked from treasure-data/prestogres-odbc
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlobj.h
47 lines (39 loc) · 1.04 KB
/
lobj.h
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
/* File: lobj.h
*
* Description: See "lobj.c"
*
* Comments: See "readme.txt" for copyright and license information.
*
*/
#ifndef __LOBJ_H__
#define __LOBJ_H__
#include "psqlodbc.h"
struct lo_arg
{
int isint;
int len;
union
{
int integer;
char *ptr;
} u;
};
#define LO_CREAT 957
#define LO_OPEN 952
#define LO_CLOSE 953
#define LO_READ 954
#define LO_WRITE 955
#define LO_LSEEK 956
#define LO_TELL 958
#define LO_UNLINK 964
#define INV_WRITE 0x00020000
#define INV_READ 0x00040000
OID odbc_lo_creat(ConnectionClass *conn, int mode);
int odbc_lo_open(ConnectionClass *conn, int lobjId, int mode);
int odbc_lo_close(ConnectionClass *conn, int fd);
Int4 odbc_lo_read(ConnectionClass *conn, int fd, char *buf, Int4 len);
Int4 odbc_lo_write(ConnectionClass *conn, int fd, char *buf, Int4 len);
Int4 odbc_lo_lseek(ConnectionClass *conn, int fd, int offset, Int4 len);
Int4 odbc_lo_tell(ConnectionClass *conn, int fd);
int odbc_lo_unlink(ConnectionClass *conn, OID lobjId);
#endif