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
];
48 char fldName_
[IDENTIFIER_LENGTH
];
51 //currently default value is supported for string and binary
52 //less than length 32 bytes
53 char defaultValueBuf_
[DEFAULT_VALUE_BUF_LENGTH
];
55 //used only in case of binding fields
62 //TODO::width and scale
77 FieldIterator(FieldNode
*ptr
) { iter
= ptr
; }
80 if (iter
== NULL
) return false; else return true;
82 FieldDef
nextElement()
84 if (iter
== NULL
) { FieldDef dummyDef
; return dummyDef
;}
85 FieldNode
*node
= iter
;
93 //Internal class used to implement the field list information
99 FieldList(){ head
= NULL
;}
101 //TODO::pass by reference instead of value
102 DbRetVal
append(FieldDef fDef
);
104 DbRetVal
remove(const char* fldName
);
106 DbRetVal
removeAll();
108 DbRetVal
updateBindVal(const char *fldName
, void *val
);
109 void * getBindField(const char *fldName
);
110 int getFieldOffset(const char *fldName
);
111 int getFieldOffset(int fldpos
);
113 //Returns position of field in the list:count starting from 1
114 int getFieldPosition(const char *fldName
);
116 DataType
getFieldType(const char *fldName
);
118 size_t getFieldLength(const char *fldName
);
120 DbRetVal
getFieldInfo(const char *fldName
, FieldInfo
*&info
);
124 FieldIterator
getIterator()
126 FieldIterator
iter(head
);