1 /***************************************************************************
2 * Copyright (C) 2007 by www.databasecache.com *
3 * Contact: praba_tuty@databasecache.com *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
15 ***************************************************************************/
22 //used by FieldNameList
26 char fldName
[IDENTIFIER_LENGTH
];
34 char fldName_
[IDENTIFIER_LENGTH
];
37 //currently default value is supported for string and binary
38 //less than length 32 bytes
39 char defaultValueBuf_
[DEFAULT_VALUE_BUF_LENGTH
];
41 //used only in case of binding fields
47 //TODO::width and scale
62 FieldIterator(FieldNode
*ptr
) { iter
= ptr
; }
65 if (iter
== NULL
) return -1; else return 0;
67 FieldDef
nextElement()
69 if (iter
== NULL
) { FieldDef dummyDef
; return dummyDef
;}
70 FieldNode
*node
= iter
;
76 //Internal class used to implement the field list information
82 FieldList(){ head
= NULL
;}
84 //TODO::pass by reference instead of value
85 DbRetVal
append(FieldDef fDef
);
87 DbRetVal
remove(const char* fldName
);
91 DbRetVal
updateBindVal(const char *fldName
, void *val
);
93 int getFieldOffset(const char *fldName
);
94 int getFieldOffset(int fldpos
);
96 DataType
getFieldType(const char *fldName
);
98 size_t getFieldLength(const char *fldName
);
102 FieldIterator
getIterator()
104 FieldIterator
iter(head
);