|
Public Types |
| enum | FieldIsStandaloneT { eFieldIsStandalone
} |
| enum | { kKeyLengthAutoCalculated = USHRT_MAX
} |
Public Member Functions |
| | dbReal (const char *fieldName=0) |
| | dbReal (const OOF_IndexOptions indexOptions) |
| | dbReal (const char *fieldName, const OOF_IndexOptions indexOptions) |
| | dbReal (const dbReal &) |
| | dbReal (dbField::FieldIsStandaloneT k) |
| virtual | ~dbReal () |
| virtual dbField * | clone () const |
| dbReal & | calculateWith (dbRealCalculator *adoptedCalculator, bool useOnlyForDefaults=false) |
| dbRealCalculator * | calculator () const |
| virtual OOF_fieldTypes | fieldType () const |
| virtual unsigned long | fieldStorageLen () const |
| dbQueryBinary | operator== (double) const |
| dbQueryBinary | operator< (double) const |
| dbQueryBinary | operator<= (double) const |
| dbQueryBinary | operator>= (double) const |
| dbQueryBinary | operator> (double) const |
| dbQueryBinary | operator!= (double) const |
| dbQueryTrinary | between (double, double) const |
| dbQueryTrinary | outside (double, double) const |
| double | value () const |
| virtual dbQueryClause * | valueAsQueryLiteral () const |
| virtual void | setString (const char *) |
| virtual void | setNumber (long) |
| dbReal & | operator= (double) |
| dbReal & | operator= (const dbReal &) |
| | operator double () const |
| virtual void | extract (std::ostream &os) const |
| virtual bool | insert (std::istream &, char fieldSep, char recSep) |
| virtual void | copyValueFrom (const dbField *) |
| virtual void | copyValueIfDifferent (const dbField *) |
| virtual void | generateTestData (bool generateRandom, unsigned long seedOrCount) |
| virtual dbQueryLiteral * | makeQueryLiteral (long) const |
| dbQueryLiteral * | makeQueryLiteral (double) const |
| virtual unsigned long | fieldMinWrapWidth () const |
| const oofString & | formatMask () const |
| void | formatMask (const char *) |
| virtual void | clear () |
| dbQueryBinary | operator== (long) const |
| dbQueryBinary | operator< (long) const |
| dbQueryBinary | operator<= (long) const |
| dbQueryBinary | operator>= (long) const |
| dbQueryBinary | operator> (long) const |
| dbQueryBinary | operator!= (long) const |
| dbQueryBinary | equal (long) const |
| dbQueryBinary | lessThan (long) const |
| dbQueryBinary | lessThanOrEqual (long) const |
| dbQueryBinary | greaterThanOrEqual (long) const |
| dbQueryBinary | greaterThan (long) const |
| dbQueryBinary | notEqual (long) const |
| dbQueryTrinary | between (long, long) const |
| dbQueryTrinary | outside (long, long) const |
| void | operator+= (long) |
| void | operator+= (double) |
| void | operator-= (long) |
| void | operator-= (double) |
| void | operator *= (long) |
| void | operator *= (double) |
| void | operator/= (long) |
| void | operator/= (double) |
| virtual void | postCloneTableCleanup () |
| virtual oofString | name () const |
| void | index (const OOF_IndexOptions=kIndexed) |
| void | indexPartialKeyLen (unsigned short) |
| void | setName (const char *name) |
| bool | hasDefaultCalculator () const |
| void | useCalculatorOnlyForDefaults () |
| bool | storesCalculatedValues () const |
| void | storeCalculatedValues () |
| bool | usingCalculator () const |
| const char * | tableName () const |
| bool | fieldIsStandalone () const |
| virtual bool | fieldIsSameTypeAs (const dbField *) const |
| virtual void | describe (std::ostream &) const |
| | Provide human-readable information about object.
|
| virtual OOF_fieldTypes | nativeType () const |
| virtual unsigned long | fieldUsualWrapWidth () const |
| dbTable * | fieldTable () const |
| unsigned long | fieldDataLen () const |
| virtual bool | isEmpty () const |
| bool | isDirty () const |
| fieldNumT | fieldNumber () const |
| virtual const oofString & | fieldName () const |
| OOF_IndexOptions | fieldIndexOptions () const |
| bool | fieldIndexIgnoresNulls () const |
| bool | fieldIndexIsCompressLeading () const |
| bool | fieldIndexIsCompressPadding () const |
| virtual bool | fieldIsIndexed () const |
| bool | fieldIsPartiallyIndexed () const |
| virtual bool | fieldIsKeywordIndexed () const |
| virtual bool | fieldIsUniqueIndexed () const |
| unsigned short | fieldNumIndexes () const |
| unsigned short | fieldKeyLen () const |
| bool | caseSensitive () const |
| virtual bool | fieldIsBlob () const |
| virtual bool | fieldIsBinary () const |
| virtual bool | fieldIsVirtual () const |
| dbField * | equivalentFieldFromTable (dbTable *) const |
| bool | valueIsDuplicate () const |
| bool | fieldIsJoinKey () const |
| | Checks if any relationships in field's table use field as join key.
|
| virtual oofString | copyString () const |
| virtual void | getChars (char *ioBuff, unsigned long &outLen) const |
| virtual const char * | asChars () const |
| virtual bool | validateContents () |
| virtual oofWordParser * | words () const |
| void | saveDefaultCalculatedValue () |
| void | saveStoredCalculatedValue () |
| bool | hidden () const |
| void | hide (bool hideIt=true) |
Static Public Member Functions |
| TOKEN | get_token (const char **s, const OOF_TOKENTYPE *m, unsigned int len) |
| void | parseMask (const char *s, TOKEN *r, const OOF_TOKENTYPE *map, unsigned int len) |
Public Attributes |
| OOF_String | mFormatMask |
Protected Member Functions |
| virtual void | CopyCalculatedValueToBuffer () |
| void | CompleteInit () |
| void | CalculateWith (dbCalculator *adoptedCalculator, bool useOnlyForDefaults) |
Static Protected Member Functions |
| void | CheckRange (double d, long minL, long maxL, const char *file, int line) |
| void | CheckRange (long l, long minL, long maxL, const char *file, int line) |
| void | CheckRange (unsigned long l, unsigned long max, const char *file, int line) |
Protected Attributes |
| OOF_tableBackend * | mBackend |
| dbTable * | mTable |
| fieldNumT | mFieldNumber |
| dbCalculator * | mCalculator |
| bool | mHidden |