![]() |
Developers ManualProject homepage |
#include <O3DBIDataField.h>
Inheritance diagram for O3DBIDataField:
Public Member Functions | |
O3DBIDataField () | |
O3DBIDataField (PC_TCHAR pchFieldname, TOracleDataType type) | |
O3DBIDataField (PC_TCHAR pchFieldname, int iValue) | |
O3DBIDataField (PC_TCHAR pchFieldname, unsigned int uValue) | |
O3DBIDataField (PC_TCHAR pchFieldname, long lValue) | |
O3DBIDataField (PC_TCHAR pchFieldname, unsigned long ulValue) | |
O3DBIDataField (PC_TCHAR pchFieldname, float fValue) | |
O3DBIDataField (PC_TCHAR pchFieldname, double dValue) | |
O3DBIDataField (PC_TCHAR pchFieldname, const TO3DBIString &strValue) | |
O3DBIDataField (PC_TCHAR pchFieldname, PC_TCHAR pchValue) | |
O3DBIDataField (PC_TCHAR pchFieldname, const O3DBIDate &dtValue) | |
O3DBIDataField (PC_TCHAR pchFieldname, const O3DBITimestamp &tsValue) | |
O3DBIDataField (PC_TCHAR pchFieldname, const O3DBIClob &value) | |
O3DBIDataField (PC_TCHAR pchFieldname, const O3DBIBlob &value) | |
O3DBIDataField (PC_TCHAR pchFieldname, const O3DBIBfile &value) | |
O3DBIDataField (PC_TCHAR pchFieldname, const O3DBIXml &value) | |
O3DBIDataField (const O3DBIDataField &other) | |
virtual | ~O3DBIDataField () |
bool | IsNullable (void) const |
bool | IsNull (void) const |
TO3DBIResult | SetNull (void) |
void | SetModified (void) |
void | CancelModified (void) |
bool | IsModified (void) const |
TOracleDataType | GetType (void) const |
virtual TO3DBIString | ToString (void) const |
Definition at line 57 of file O3DBIDataField.h.
|
The standard constructor. Definition at line 21 of file O3DBIDataField.cpp. |
|
An initialization constructor.
Definition at line 31 of file O3DBIDataField.cpp. |
|
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. An initialization constructor.
Definition at line 54 of file O3DBIDataField.cpp. |
|
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. An initialization constructor.
Definition at line 68 of file O3DBIDataField.cpp. |
|
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. An initialization constructor.
Definition at line 82 of file O3DBIDataField.cpp. |
|
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. An initialization constructor.
Definition at line 96 of file O3DBIDataField.cpp. |
|
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. An initialization constructor.
Definition at line 110 of file O3DBIDataField.cpp. |
|
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. An initialization constructor.
Definition at line 124 of file O3DBIDataField.cpp. |
|
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. An initialization constructor.
Definition at line 138 of file O3DBIDataField.cpp. |
|
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. An initialization constructor.
Definition at line 153 of file O3DBIDataField.cpp. |
|
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. An initialization constructor.
Definition at line 167 of file O3DBIDataField.cpp. |
|
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. An initialization constructor.
Definition at line 181 of file O3DBIDataField.cpp. |
|
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. An initialization constructor.
Definition at line 196 of file O3DBIDataField.cpp. |
|
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. An initialization constructor.
Definition at line 210 of file O3DBIDataField.cpp. |
|
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. An initialization constructor.
Definition at line 224 of file O3DBIDataField.cpp. |
|
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. An initialization constructor.
Definition at line 238 of file O3DBIDataField.cpp. |
|
A copy constructor.
Definition at line 43 of file O3DBIDataField.cpp. |
|
The virtual destructor. Definition at line 252 of file O3DBIDataField.cpp. |
|
Use this member function to cancel the modified flag. Definition at line 611 of file O3DBIDataField.cpp. Referenced by O3DBIRecord::CancelModified(). |
|
Call this method to determine which kind of ORACLE data type is managed by the O3DBIDataField object.
Definition at line 621 of file O3DBIDataField.cpp. References TOracleDataType. |
|
Use this member function to determine if this data field is marked as modified, i.e. the content of the field were modified since it was last synchronized with the content of the data base.
Definition at line 616 of file O3DBIDataField.cpp. |
|
Call this member function to determine if the data field is NULL (...in the data base sense of 'having no value').
Definition at line 595 of file O3DBIDataField.cpp. |
|
This member function can be used to determine that the data field can be set to NULL (...in the data base sense of 'having no value').
Definition at line 590 of file O3DBIDataField.cpp. |
|
Use this member function to mark this data field as modified, i.e. the content of the field was modified and differs from its corresponding field in the data base, since it was last synchronized (SELECT, INSERT or UPDATE) with the data base. Definition at line 606 of file O3DBIDataField.cpp. |
|
Call this member function to set the content of the data field to NULL (...in the data base sense of 'having no value'). A call of this member function will not have any effect, if the field isn't nullable (i.e. O3DBIDataField::IsNullable returns false).
Definition at line 600 of file O3DBIDataField.cpp. References TO3DBIResult. |
|
Call this member function to get a string that 'textually represents' the content of the O3DBIDataField object.
Reimplemented from O3DBIObject. Definition at line 803 of file O3DBIDataField.cpp. References TO3DBIString. Referenced by O3DBIRecord::ToString(). |
|
Generated on Sun Jan 23 11:36:45 2005 for Oracle Object Oriented Database Interface (O3DBI) by
![]() |