forked from joeferner/node-oracle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutParam.h
54 lines (46 loc) · 1.06 KB
/
outParam.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
48
49
50
51
52
53
54
#ifndef _outparam_h_
#define _outparam_h_
#include <v8.h>
#include <node.h>
#ifndef WIN32
#include <unistd.h>
#endif
#include "utils.h"
#include <occi.h>
using namespace node;
using namespace v8;
struct inout_t {
bool hasInParam;
const char* stringVal;
int intVal;
double doubleVal;
float floatVal;
oracle::occi::Date dateVal;
oracle::occi::Timestamp timestampVal;
oracle::occi::Number numberVal;
};
class OutParam : ObjectWrap {
public:
static void Init(Handle<Object> target);
static Handle<Value> New(const Arguments& args);
static Persistent<FunctionTemplate> constructorTemplate;
int _type;
int _size;
inout_t _inOut;
OutParam();
~OutParam();
int type();
int size();
static const int OCCIINT = 0;
static const int OCCISTRING = 1;
static const int OCCIDOUBLE = 2;
static const int OCCIFLOAT = 3;
static const int OCCICURSOR = 4;
static const int OCCICLOB = 5;
static const int OCCIDATE = 6;
static const int OCCITIMESTAMP = 7;
static const int OCCINUMBER = 8;
static const int OCCIBLOB = 9;
private:
};
#endif