Specifies the format string for sequences.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Property SequenceFormat As String |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As OracleStorage
Dim value As String
instance.SequenceFormat = value
value = instance.SequenceFormat
|
| C# | |
|---|
public string SequenceFormat {get; set;} |
| Managed Extensions for C++ | |
|---|
public: __property string* get_SequenceFormat();
public: __property void set_SequenceFormat(
string* value
); |
| C++/CLI | |
|---|
public:
property String^ SequenceFormat {
String^ get();
void set (String^ value);
} |
Example
This example shows the sequence format strings for an entity named "USER". The sequence is generated
for the field "ID".
| C# | Copy Code |
|---|
{0}Sequence = USERSequence {0}_s1 = USER_s1 {0}{1}Sequence = USERIDSequence {0}_s{1} = USER_sID |
Remarks
Requirements
Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family
See Also