Oracle® Objects for OLE C++ Class Library Developer's Guide 10g Release 2 (10.2) Part Number B14308-01 |
|
Applies To
Description
Returns the value of the attribute.
Usage
voidSetAttrValue(int index, const OValue& val) const throw(OException);
void SetAttrValue(int index, int val) const throw(OException);
void SetAttrValue(int index, long val) const throw(OException);
void SetAttrValue(int index, double val) const throw(OException);
void SetAttrValue(int index, const char *val) const throw(OException);
void SetAttrValue(int index, const OBlob &val) const throw(OException);
void SetAttrValue(int index, const OClob &val) const throw(OException);
void SetAttrValue(int index, const OBfile &val) const throw(OException);
void SetAttrValue(int index, const ORef &val) const throw(OException);
void SetAttrValue(int index, const OObject &val) const throw(OException);
void SetAttrValue(int index, const OCollection &val) const throw(OException);
void SetAttrValue(const char *attrname, const OValue& val) const throw(OException);
void SetAttrValue(const char *attrname, int val) const throw(OException);
void SetAttrValue(const char *attrname, long val) const throw(OException);
void SetAttrValue(const char *attrname, double val) const throw(OException);
void SetAttrValue(const char *attrname, const char *val) const throw(OException);
void SetAttrValue(const char *attrname, const OBlob &val) const throw(OException);
void SetAttrValue(const char *attrname, const OClob &val) const throw(OException);
void SetAttrValue(const char *attrname, const OBfile &val) const throw(OException);
void SetAttrValue(const char *attrname, const ORef &val) const throw(OException);
void SetAttrValue(const char *attrname, const OObject &val) const throw(OException);
void SetAttrValue(const char *attrname, const OCollection &val) const throw(OException);
Arguments
Arguments |
Description |
---|---|
index |
An integer index between 0 and count-1. |
attrname |
A string containing the name of the attribute. |
val |
The value of the specified object. |