Description Get the storage method used when the McDBNode.Data content was stored.
-
Return Type
-
A Boolean value. True when value is set successfully.
-
Syntax
-
object.GetNodeStorageMethod (pdbnodeData, eStorageMethod)
The GetNodeStorageMethod Method syntax has these parts: |
| object | An expression evaluating to an object of type McDataManager. | | pdbnodeData | Required. A McDBNode object. The McDBNode that has just stored content in the Data property. | | eStorageMethod | Required. A mcDataNodeStorageMethods enumeration, as described in settings. | Settings The settings for eStorageMethod are:
 | mcdatnsm_NotSpecified | 0 |
No Value. Use default value specified to the database type.
|
 | mcdatnsm_StoreFilepath | 65536 |
Store the filename of a file (file must be already saved)
|
 | mcdatnsm_StoreFileData | 131072 |
Save the data in the database
|
 | mcdatnsm_StoreCopyFileName | 262144 |
Save to a database managed file and store filename in database
|
 | mcdatnsm_All | 458752 |
Not a valid value. Use for bit mask of possible values.
|
Remarks SetStorageMethod is not SetNodeStorageMethod. SetNodeStorageMethod is used to store the value of SetStorageMethod when the McDBNode data is stored. SetStorageMethod stores the method to be used by McDBNode of a McDBType in a specific McDBDatabase, which may be changed at any time.
|