DataSource Object
DataSource — Source of the user data.
Introduction
Holds the information where the user data can be found.
Properties
Table 9. DataSource Object Properties
Name | Details | Possible Values | Default Value |
---|
ExternalName | Name of the external data source. | * | - |
UserName | User name defined for the connection. | * | - |
Password | Password for defined user. | * | - |
ReadOnlyConnection | Is data read-only? | True, False | False |
SqlIdentifiersCaseSensitive | Let SQL identifiers submitted as input keep their sensitivity? | True, False | False |
ThreadSafe | Will the connection be used by several threads at once? | True, False | True |
Description | Description to be used in lists. | * | - |
DetailDescription | Detailed description. | * | - |
Modified | Modification date-time stamp in ISO 8601 format. | ccyy-mm-dd Thh:mm:ss | date stamp |
Example
<Object Application="MyOrder" Type="DataSource" Name="Customer">
<DataSource>
<ExternalName>order</ExternalName>
<UserName>order_user</UserName>
<Password></Password>
<ReadOnlyConnection>False</ReadOnlyConnection>
<SqlIdentifiersCaseSensitive>False</SqlIdentifiersCaseSensitive>
<ThreadSafe>True</ThreadSafe>
<Description>Customer</Description>
<DetailDescription>Customer Table in PostgreSQL</DetailedDescription>
<Modified>2009-07-27T23:26:29</Modified>
</DataSource>
</Object>