Syntax Element: string
Description
Represents the string client type.
Example
This keyword is highlighted
like this.
You can click on keywords and concepts in blue.
types nstring ("nvarchar") as string, fixstring ("char") as string, guid ("uniqueidentifier") as string; //... column ID with DataType = type(guid); column Column1 with DataType = type(nstring(200)); column USState with DataType = type(fixstring(2));
Notes
- In .NET, this maps to the type System.String
- In Java, this maps to the type java.lang.String
- There is no way to enforce non-nullability at compile time
Related Use Cases
- Specifying design separately from construction
- Getting compiler feedback on your database design
- Keeping clients coupled to the current version
- Transition testing
Other Actions
documentation | all examples for this syntax element | all examples | use cases | concepts | keywords
types