DbGetProp Function |
Note |
---|
You must open the database before you can retrieve its properties or those of its connections, tables, views, or fields. However, you do not need to open a table or view before retrieving its properties. |
Namespace: XSharp.VFP
1customer.custid
cType | Description |
---|---|
Connection | cName is a named connection in the current database. |
Database | Name is the current database. |
Field | cName is a field in the current database. |
Table | cName is a table in the current database. |
View | cName is a view in the current database. |
cProperty | Type | Description |
---|---|---|
Asynchronous | L |
The connection mode. (Default) False (.F.) specifies a synchronous connection. True (.T.) specifies an asynchronous connection. |
BatchMode | L | The batch-processing mode. (Default) True (.T.) specifies the connection that operates in batch mode. |
Comment | C | The text of the connection comment. |
ConnectString | C | The login connection string. |
ConnectTimeout | N | The connection timeout interval in seconds. The default is 0 (wait indefinitely). |
Database | C | The name of the server database specified with the Database clause in the Create Connection command or in the Connection Designer. |
DataSource | C | The name of the data source as defined in the Odbc.ini file. |
DisconnectRollback | L |
Specifies if a pending transaction is committed or rolled back when SqlDisconnect( ) is called for the last connection handle. The default is false (.F.), indicating that a pending transaction is committed when SqlDisconnect( ) is called for the last connection handle. Specify true (.T.) to roll back a pending transaction when SqlDisconnect( ) is called for the last connection handle. Connections with automatic transaction processing are not affected by this setting. |
DispLogin | N |
Contains a numeric value that determines when the ODBC Login dialog box is displayed. DispLogin may assume the following values: 1 or DB_PROMPTCOMPLETE (from Foxpro.h). 1 is the default. 2 or DB_PROMPTALWAYS (from Foxpro.h). 3 or DB_PROMPTNEVER (from Foxpro.h). If 1 or DB_PROMPTCOMPLETE is specified, X# displays the ODBC Login dialog box only if any required information is missing. If 2 or DB_PROMPTALWAYS is specified, the ODBC Login dialog box is always displayed, allowing you to change settings before connecting. If 3 or DB_PROMPTNEVER is specified, the ODBC Login dialog box is not displayed and X# generates an error if the required login information is not available. |
DispWarnings | L | Contains a logical value that determines if non-trappable warnings from the remote table, ODBC, or X# are displayed. (Default) True (.T.) specifies that non-trappable errors are displayed. |
IdleTimeout | N | The idle timeout interval in minutes. Timeout is checked no more than once per minute, therefore it is possible that active connections might deactivate one or two minutes later after the specified time interval has elapsed. The default value is 0 (wait indefinitely). |
PacketSize | N | The size of the network packet used by the connection. Adjusting this value can improve performance. The default value is 4096 bytes (4K). |
PassWord | C | The connection password. |
QueryTimeout | N | The query timeout interval in seconds. The default value is 0 (wait indefinitely). |
Transactions | N |
Contains a numeric value that determines how the connection manages transactions on the remote table. Transactions may assume the following values: 1 or DB_TRANSAUTO (from Foxpro.h). 1 is the default. Transaction processing for the remote table is handled automatically. 2 or DB_TRANSMANUAL (from Foxpro.h). Transaction processing is handled manually through SqlCommit( ) and SqlRollBack( ). |
UserId | C | The user identification. |
WaitTime | N | The amount of time in milliseconds that elapses before X# checks whether the SQL statement has completed executing. The default is 100 milliseconds. |
Note |
---|
All of these are read/write |
cProperty | Type | Description |
---|---|---|
Comment | C |
The text of the database comment. Read/write. |
DBCEventFileName | C | Relative path and filename of external program file containing DBC Events code. |
DBCEvents | L | Enabled state of DBC Events. Set to True (.T.) to enable. |
Version | N |
The database version number. Read-only. |
cProperty | Type | Description |
---|---|---|
Caption | C | The field caption. If an equal sign (=) precedes the value of this property, X# evaluates the value as an expression. Otherwise, it is treated as a string literal. |
Comment | C | The text of the field comment. |
DefaultValue | C | The field default value. |
DisplayClass | C | Name of the class used for field mapping. |
DisplayClassLibrary | C | Path to the class library specified with the DisplayClass property. |
Format | C | The field display format. See the Format Property for a list of format settings. |
InputMask | C | The field input format. See the InputMask Property for a list of input mask settings. |
RuleExpression | C | The field rule expression. |
RuleText | C | The field rule error text. |
Note |
---|
All of these are read/write |
cProperty | Type | Description |
---|---|---|
Caption | C | The field caption. If an equal sign (=) precedes the value of this property, Visual FoxPro evaluates the value as an expression. Otherwise, it is treated as a string literal. |
Comment | C | The text of the field comment. |
DataType | C |
The data type for a field in a view. Initially set to the data type for the field in the data source. To specify a different data type for a field with DbSetProp( ), use the syntax for creating fields in Create Table – SQL. For example, to change the data type of an integer field named iCost in a table named Mytable to numeric type with width 4 and 2 decimal places, use DbSetProp('mytable.icost', 'field', ; 'DataType', 'N(4,2)') You can also include the NOCPTRANS clause to prevent translation of character and memo fields to a different code page. Read/write for remote views. |
DisplayClass | C | Name of the class used for field mapping. |
DisplayClassLibrary | C | Path to the class library specified with the DisplayClass property. |
DefaultValue | C | The field default value |
KeyField | L | Contains True (.T.) if the field is specified in an index key expression; otherwise, contains False (.F.). |
RuleExpression | C | The field rule expression. |
RuleText | C | The field rule error text. |
Updatable | L | Contains True (.T.) if the field can be updated; otherwise, contains False (.F.). |
UpdateName | C | The name of the field used when data in the field is updated to the remote table. By default, the remote table field name. |
Note |
---|
All of these are read/write |
cProperty | Type | Description |
---|---|---|
Comment | C |
The text of the table comment. Read/write. |
DeleteTrigger | C |
The Delete trigger expression. Read-only. |
InsertTrigger | C |
The Insert trigger expression. Read-only. |
Path | C |
The relative path with respect to the DBC to the table including the name of the file. Read-only. |
PrimaryKey | C |
The tag name of the primary key. Read-only. |
RuleExpression | C |
The row rule expression. Read-only. |
RuleText | C |
The row rule error text. Read-only. |
UpdateTrigger | C |
The Update trigger expression. Read-only. |
cProperty | Type | Description | ||
---|---|---|---|---|
AllowSimultaneousFetch | L |
Applies when using remote views, a shared connection, and to cursors created using ODBC. AllowSimultaneousFetch contains True (.T.) when similarly configured cursors sharing the connection are permitted to fetch rows simultaneously. Otherwise, AllowSimultaneousFetch contains False (.F.) when fetching rows simultaneously is not permitted.
| ||
BatchUpdateCount | N |
The number of update statements sent to the back end for views. 1 is the default.
Adjusting this value can greatly increase update performance. Read/write. | ||
Comment | C |
The text of the view comment. Read/write. | ||
CompareMemo | L |
Contains true (.T.) (default) if memo fields (of type Memo, General, or Picture, or, for remote views, type Timestamp)
are included in the Where clause for updates; otherwise, contains false (.F.). Read/write. | ||
ConnectName | C |
The named connection used when the view is opened. Read-only. | ||
FetchAsNeeded | L |
If True (.T.), data is fetched only when needed, such as when record pointer moves to a row that has not been fetched. If False (.F.), additional data is fetched during idle time. (Default)
Read/write. | ||
FetchMemo | L |
Contains true (.T.) (default) if memo and general fields are fetched with the view results; otherwise, contains false (.F.). Use the ISMEMOFETCHED( ) Function to determine if the memo field has been fetched. Read/write. | ||
FetchSize | N |
Contains the number of records fetched at a time from the remote tables. The default is 100 records.
Setting FetchSize to –1 retrieves the complete result set, limited by the MaxRecords setting.
Read/write. | ||
MaxRecords | N |
The maximum number of records fetched when result sets are returned. The default is – 1 (all rows are returned). A value of 0 specifies that the view is executed but no results are fetched. Read/write. | ||
Offline | L |
Contains true (.T.) if the view is an offline view. Read-only. | ||
ParameterList | C |
The Where clause parameters. The format for the parameters is ''ParameterName1, 'Type1'; ParameterName2, 'Type2'; ...'' where Type
is a one of the following characters specifying the parameter type: C – Character D – Date T – DateTime N – Numeric F – Floating B – Double I – Integer Y – Currency L - Logical For example, ''MyParam1, 'C' '' specifies a single character type parameter named MyParam1. For more information about creating parameterized views, see How to: Create Parameterized Views. Read/write. | ||
Prepared | L |
Contains True (.T.) if SQL statements are prepared for subsequent Requery( ) function calls.
Requery( ) is used to retrieve data again for a SQL view. See SqlPrepare( ) for additional information about preparing SQL statements.
The default is false (.F.). The rule text expression displayed when an error occurs when data is edited in a Browse or Edit window. Read/write. | ||
RuleExpression | C |
The row rule expression. Read/write. | ||
RuleText | C |
The rule text expression displayed when an error occurs when data is edited in a Browse or Edit window. Read/write. | ||
SendUpdates | L |
Contains true (.T.) if a SQL update query is sent to update remote tables; otherwise, contains false (.F.) (default). Read/write. | ||
ShareConnection | L |
Contains true (.T.) if a SQL update query is sent to update remote tables; otherwise, contains false (.F.) (default). Read/write. | ||
ShareType | L |
Contains true (.T.) if the view can share its connection handle with other connections; otherwise, contains false (.F.). Read/write. | ||
SourceType | N |
The view source. SourceType may assume the following values: 1 - The view uses local tables. 2 - The view uses remote tables. Read-only. | ||
SQL | C |
The SQL statement executed when the view is opened. Read/write. | ||
Tables | C |
A comma-delimited list of the names of the tables. Read/write. | ||
UpdateType | N |
The update type. Valid values are: 1 or DB_Update (from Foxpro.h). The old data is updated with the new data (default). 2 or DB_DeleteInsert (from Foxpro.h). The old data is deleted and the new data is inserted. Read/write. | ||
UseMemoSize | N |
The minimum size (in bytes) for which result columns are returned in memo fields.
For example, if the width of a column result is greater than the value of UseMemoSize, the column result is stored in a memo field.
UseMemoSize may vary from 1 to 255; the default value is 255. Read/write. | ||
WhereType | N |
The Where clause for updates to remote tables. WhereType may assume the following values: 1 or DB_KEY (from Foxpro.h). The Where clause used to update remote tables consists of only the primary fields specified with the KeyFieldList property. 2 or DB_KEYANDUPDATable (from Foxpro.h). The Where clause used to update remote tables consists of the primary fields specified with the KeyFieldList property and any updatable fields. 3 or DB_KEYANDMODIFIED (from Foxpro.h) (default). The Where clause used to update remote tables consists of the primary fields specified with the KeyFieldList property and any other fields that are modified. 4 or DB_KEYANDTIMESTAMP (from Foxpro.h). The Where clause used to update remote tables consists of the primary fields specified with the KeyFieldList property and a comparison of the time stamps. For more information about the WhereType property, see Managing Updates by Using Views. Read/write. |
1Close Databases 2Clear 3Open Database (HOME(2) + 'Data\testdata') 4* Displays the primary key field 5cResults = DbGetProp("customer", "Table", "PrimaryKey") 6=MessageBox(cResults) // Displays 'cust_id' 7* Displays comments for the field 'cust_id' 8cResults = DbGetProp("customer.cust_id", "Field", "Comment") 9IF LEN(ALLTRIM(cResults)) = 0 10=MessageBox("No Comment for this field." + CHR(13) + ; 11CHR (13) + "Use DbSetProp( ) to add comments.") 12ELSE 13=MessageBox("Cust_id field comments: " + cRESULTS) 14ENDIF