WebQueryConnection
WebQueryConnection class
Specifies the properties for a web query source. A web query will retrieve data from HTML tables, and can also supply HTTP “Get” parameters to be processed by the web server in generating the HTML by including the parameters and parameter elements.
class WebQueryConnection extends ExternalConnection;
Constructors
Name | Description |
---|---|
constructor(ExternalConnection) | Constructs from a parent object convertible to this. |
Methods
Method | Description |
---|---|
getClassType() | Gets the type of this ExternalConnection object. |
isXml() | true if the web query source is XML (versus HTML), otherwise false. |
setIsXml(boolean) | true if the web query source is XML (versus HTML), otherwise false. |
isXl97() | This flag exists for backward compatibility with older existing spreadsheet files, and is set to true if this web query was created in Microsoft Excel 97. This is an optional attribute that can be ignored. |
setIsXl97(boolean) | This flag exists for backward compatibility with older existing spreadsheet files, and is set to true if this web query was created in Microsoft Excel 97. This is an optional attribute that can be ignored. |
isXl2000() | This flag exists for backward compatibility with older existing spreadsheet files, and is set to true if this web query was refreshed in a spreadsheet application newer than or equal to Microsoft Excel 2000. This is an optional attribute that can be ignored. |
setIsXl2000(boolean) | This flag exists for backward compatibility with older existing spreadsheet files, and is set to true if this web query was refreshed in a spreadsheet application newer than or equal to Microsoft Excel 2000. This is an optional attribute that can be ignored. |
getUrl() | URL to use to refresh external data. |
setUrl(string) | URL to use to refresh external data. |
getConnectionFile() | Gets the connection file. |
isTextDates() | Flag indicating whether dates should be imported into cells in the worksheet as text rather than dates. |
setIsTextDates(boolean) | Flag indicating whether dates should be imported into cells in the worksheet as text rather than dates. |
isXmlSourceData() | Flag indicating that XML source data should be imported instead of the HTML table itself. |
setIsXmlSourceData(boolean) | Flag indicating that XML source data should be imported instead of the HTML table itself. |
getPost() | Returns or sets the string used with the post method of inputting data into a web server to return data from a web query. |
setPost(string) | Returns or sets the string used with the post method of inputting data into a web server to return data from a web query. |
isParsePre() | Flag indicating whether data contained within HTML PRE tags in the web page is parsed into columns when you import the page into a query table. |
setIsParsePre(boolean) | Flag indicating whether data contained within HTML PRE tags in the web page is parsed into columns when you import the page into a query table. |
isHtmlTables() | Flag indicating whether web queries should only work on HTML tables. |
setIsHtmlTables(boolean) | Flag indicating whether web queries should only work on HTML tables. |
getHtmlFormat() | How to handle formatting from the HTML source when bringing web query data into the worksheet. Relevant when sourceData is True. |
setHtmlFormat(HtmlFormatHandlingType) | How to handle formatting from the HTML source when bringing web query data into the worksheet. Relevant when sourceData is True. |
isSameSettings() | Flag indicating whether to parse all tables inside a PRE block with the same width settings as the first row. |
setIsSameSettings(boolean) | Flag indicating whether to parse all tables inside a PRE block with the same width settings as the first row. |
getEditWebPage() | The URL of the user-facing web page showing the web query data. This URL is persisted in the case that sourceData=“true” and url has been redirected to reference an XML file. Then the user-facing page can be shown in the UI, and the XML data can be retrieved behind the scenes. |
setEditWebPage(string) | The URL of the user-facing web page showing the web query data. This URL is persisted in the case that sourceData=“true” and url has been redirected to reference an XML file. Then the user-facing page can be shown in the UI, and the XML data can be retrieved behind the scenes. |
isConsecutive() | Flag indicating whether consecutive delimiters should be treated as just one delimiter. |
setIsConsecutive(boolean) | Flag indicating whether consecutive delimiters should be treated as just one delimiter. |
isNull() | Checks whether the implementation object is null. |
getId() | Gets the id of the connection. |
getConnectionId() | Specifies The unique identifier of this connection. |
getSourceType() | Gets or Sets the external connection DataSource type. |
setSourceType(ConnectionDataSourceType) | Gets or Sets the external connection DataSource type. |
getSSOId() | Identifier for Single Sign On (SSO) used for authentication between an intermediate spreadsheetML server and the external data source. |
setSSOId(string) | Identifier for Single Sign On (SSO) used for authentication between an intermediate spreadsheetML server and the external data source. |
getSavePassword() | True if the password is to be saved as part of the connection string; otherwise, False. |
setSavePassword(boolean) | True if the password is to be saved as part of the connection string; otherwise, False. |
getSaveData() | True if the external data fetched over the connection to populate a table is to be saved with the workbook; otherwise, false. |
setSaveData(boolean) | True if the external data fetched over the connection to populate a table is to be saved with the workbook; otherwise, false. |
getRefreshOnLoad() | True if this connection should be refreshed when opening the file; otherwise, false. |
setRefreshOnLoad(boolean) | True if this connection should be refreshed when opening the file; otherwise, false. |
getReconnectionMethodType() | Specifies what the spreadsheet application should do when a connection fails. The default value is ReConnectionMethodType.Required. |
setReconnectionMethodType(ReConnectionMethodType) | Specifies what the spreadsheet application should do when a connection fails. The default value is ReConnectionMethodType.Required. |
getOnlyUseConnectionFile() | Indicates whether the spreadsheet application should always and only use the connection information in the external connection file indicated by the odcFile attribute when the connection is refreshed. If false, then the spreadsheet application should follow the procedure indicated by the reconnectionMethod attribute |
setOnlyUseConnectionFile(boolean) | Indicates whether the spreadsheet application should always and only use the connection information in the external connection file indicated by the odcFile attribute when the connection is refreshed. If false, then the spreadsheet application should follow the procedure indicated by the reconnectionMethod attribute |
getOdcFile() | Specifies the full path to external connection file from which this connection was created. If a connection fails during an attempt to refresh data, and reconnectionMethod=1, then the spreadsheet application will try again using information from the external connection file instead of the connection object embedded within the workbook. |
setOdcFile(string) | Specifies the full path to external connection file from which this connection was created. If a connection fails during an attempt to refresh data, and reconnectionMethod=1, then the spreadsheet application will try again using information from the external connection file instead of the connection object embedded within the workbook. |
getSourceFile() | Used when the external data source is file-based. When a connection to such a data source fails, the spreadsheet application attempts to connect directly to this file. May be expressed in URI or system-specific file path notation. |
setSourceFile(string) | Used when the external data source is file-based. When a connection to such a data source fails, the spreadsheet application attempts to connect directly to this file. May be expressed in URI or system-specific file path notation. |
isNew() | True if the connection has not been refreshed for the first time; otherwise, false. This state can happen when the user saves the file before a query has finished returning. |
setIsNew(boolean) | True if the connection has not been refreshed for the first time; otherwise, false. This state can happen when the user saves the file before a query has finished returning. |
getName() | Specifies the name of the connection. Each connection must have a unique name. |
setName(string) | Specifies the name of the connection. Each connection must have a unique name. |
getKeepAlive() | True when the spreadsheet application should make efforts to keep the connection open. When false, the application should close the connection after retrieving the information. |
setKeepAlive(boolean) | True when the spreadsheet application should make efforts to keep the connection open. When false, the application should close the connection after retrieving the information. |
getRefreshInternal() | Specifies the number of minutes between automatic refreshes of the connection. |
setRefreshInternal(number) | Specifies the number of minutes between automatic refreshes of the connection. |
getConnectionDescription() | Specifies the user description for this connection |
setConnectionDescription(string) | Specifies the user description for this connection |
isDeleted() | Indicates whether the associated workbook connection has been deleted. true if the connection has been deleted; otherwise, false. |
setIsDeleted(boolean) | Indicates whether the associated workbook connection has been deleted. true if the connection has been deleted; otherwise, false. |
getCredentialsMethodType() | Specifies the authentication method to be used when establishing (or re-establishing) the connection. |
setCredentialsMethodType(CredentialsMethodType) | Specifies the authentication method to be used when establishing (or re-establishing) the connection. |
getBackgroundRefresh() | Indicates whether the connection can be refreshed in the background (asynchronously). true if preferred usage of the connection is to refresh asynchronously in the background; false if preferred usage of the connection is to refresh synchronously in the foreground. |
setBackgroundRefresh(boolean) | Indicates whether the connection can be refreshed in the background (asynchronously). true if preferred usage of the connection is to refresh asynchronously in the background; false if preferred usage of the connection is to refresh synchronously in the foreground. |
getParameters() | Gets ConnectionParameterCollection for an ODBC or web query. |
getPowerQueryFormula() | Gets the definition of power query formula. |
getCommand() | The string containing the database command to pass to the data provider API that will interact with the external source in order to retrieve data |
setCommand(string) | The string containing the database command to pass to the data provider API that will interact with the external source in order to retrieve data |
getCommandType() | Specifies the OLE DB command type. 1. Query specifies a cube name 2. Query specifies a SQL statement 3. Query specifies a table name 4. Query specifies that default information has been given, and it is up to the provider how to interpret. 5. Query is against a web based List Data Provider. |
setCommandType(OLEDBCommandType) | Specifies the OLE DB command type. 1. Query specifies a cube name 2. Query specifies a SQL statement 3. Query specifies a table name 4. Query specifies that default information has been given, and it is up to the provider how to interpret. 5. Query is against a web based List Data Provider. |
getConnectionString() | The connection information string is used to make contact with an OLE DB or ODBC data source. |
setConnectionString(string) | The connection information string is used to make contact with an OLE DB or ODBC data source. |
getSecondCommand() | Specifies a second command text string that is persisted when PivotTable server-based page fields are in use. For ODBC connections, serverCommand is usually a broader query than command (no WHERE clause is present in the former). Based on these 2 commands(Command and ServerCommand), parameter UI can be populated and parameterized queries can be constructed |
setSecondCommand(string) | Specifies a second command text string that is persisted when PivotTable server-based page fields are in use. For ODBC connections, serverCommand is usually a broader query than command (no WHERE clause is present in the former). Based on these 2 commands(Command and ServerCommand), parameter UI can be populated and parameterized queries can be constructed |
constructor(ExternalConnection)
Constructs from a parent object convertible to this.
constructor(obj: ExternalConnection);
Parameters:
Parameter | Type | Description |
---|---|---|
obj | ExternalConnection | The parent object. |
getClassType()
Gets the type of this ExternalConnection object.
getClassType() : ExternalConnectionClassType;
Returns
isXml()
true if the web query source is XML (versus HTML), otherwise false.
isXml() : boolean;
setIsXml(boolean)
true if the web query source is XML (versus HTML), otherwise false.
setIsXml(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
isXl97()
This flag exists for backward compatibility with older existing spreadsheet files, and is set to true if this web query was created in Microsoft Excel 97. This is an optional attribute that can be ignored.
isXl97() : boolean;
setIsXl97(boolean)
This flag exists for backward compatibility with older existing spreadsheet files, and is set to true if this web query was created in Microsoft Excel 97. This is an optional attribute that can be ignored.
setIsXl97(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
isXl2000()
This flag exists for backward compatibility with older existing spreadsheet files, and is set to true if this web query was refreshed in a spreadsheet application newer than or equal to Microsoft Excel 2000. This is an optional attribute that can be ignored.
isXl2000() : boolean;
setIsXl2000(boolean)
This flag exists for backward compatibility with older existing spreadsheet files, and is set to true if this web query was refreshed in a spreadsheet application newer than or equal to Microsoft Excel 2000. This is an optional attribute that can be ignored.
setIsXl2000(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
getUrl()
URL to use to refresh external data.
getUrl() : string;
setUrl(string)
URL to use to refresh external data.
setUrl(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
getConnectionFile()
Gets the connection file.
getConnectionFile() : string;
isTextDates()
Flag indicating whether dates should be imported into cells in the worksheet as text rather than dates.
isTextDates() : boolean;
setIsTextDates(boolean)
Flag indicating whether dates should be imported into cells in the worksheet as text rather than dates.
setIsTextDates(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
isXmlSourceData()
Flag indicating that XML source data should be imported instead of the HTML table itself.
isXmlSourceData() : boolean;
setIsXmlSourceData(boolean)
Flag indicating that XML source data should be imported instead of the HTML table itself.
setIsXmlSourceData(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
getPost()
Returns or sets the string used with the post method of inputting data into a web server to return data from a web query.
getPost() : string;
setPost(string)
Returns or sets the string used with the post method of inputting data into a web server to return data from a web query.
setPost(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
isParsePre()
Flag indicating whether data contained within HTML PRE tags in the web page is parsed into columns when you import the page into a query table.
isParsePre() : boolean;
setIsParsePre(boolean)
Flag indicating whether data contained within HTML PRE tags in the web page is parsed into columns when you import the page into a query table.
setIsParsePre(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
isHtmlTables()
Flag indicating whether web queries should only work on HTML tables.
isHtmlTables() : boolean;
setIsHtmlTables(boolean)
Flag indicating whether web queries should only work on HTML tables.
setIsHtmlTables(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
getHtmlFormat()
How to handle formatting from the HTML source when bringing web query data into the worksheet. Relevant when sourceData is True.
getHtmlFormat() : HtmlFormatHandlingType;
Returns
setHtmlFormat(HtmlFormatHandlingType)
How to handle formatting from the HTML source when bringing web query data into the worksheet. Relevant when sourceData is True.
setHtmlFormat(value: HtmlFormatHandlingType) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | HtmlFormatHandlingType | The value to set. |
isSameSettings()
Flag indicating whether to parse all tables inside a PRE block with the same width settings as the first row.
isSameSettings() : boolean;
setIsSameSettings(boolean)
Flag indicating whether to parse all tables inside a PRE block with the same width settings as the first row.
setIsSameSettings(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
getEditWebPage()
The URL of the user-facing web page showing the web query data. This URL is persisted in the case that sourceData=“true” and url has been redirected to reference an XML file. Then the user-facing page can be shown in the UI, and the XML data can be retrieved behind the scenes.
getEditWebPage() : string;
setEditWebPage(string)
The URL of the user-facing web page showing the web query data. This URL is persisted in the case that sourceData=“true” and url has been redirected to reference an XML file. Then the user-facing page can be shown in the UI, and the XML data can be retrieved behind the scenes.
setEditWebPage(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
isConsecutive()
Flag indicating whether consecutive delimiters should be treated as just one delimiter.
isConsecutive() : boolean;
setIsConsecutive(boolean)
Flag indicating whether consecutive delimiters should be treated as just one delimiter.
setIsConsecutive(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
isNull()
Checks whether the implementation object is null.
isNull() : boolean;
getId()
Gets the id of the connection.
getId() : number;
getConnectionId()
Specifies The unique identifier of this connection.
getConnectionId() : number;
Remarks
NOTE: This property is now obsolete. Instead, please use ExternalConnection.Id property. This property will be removed 12 months later since October 2024. Aspose apologizes for any inconvenience you may have experienced.
getSourceType()
Gets or Sets the external connection DataSource type.
getSourceType() : ConnectionDataSourceType;
Returns
setSourceType(ConnectionDataSourceType)
Gets or Sets the external connection DataSource type.
setSourceType(value: ConnectionDataSourceType) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | ConnectionDataSourceType | The value to set. |
getSSOId()
Identifier for Single Sign On (SSO) used for authentication between an intermediate spreadsheetML server and the external data source.
getSSOId() : string;
setSSOId(string)
Identifier for Single Sign On (SSO) used for authentication between an intermediate spreadsheetML server and the external data source.
setSSOId(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
getSavePassword()
True if the password is to be saved as part of the connection string; otherwise, False.
getSavePassword() : boolean;
setSavePassword(boolean)
True if the password is to be saved as part of the connection string; otherwise, False.
setSavePassword(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
getSaveData()
True if the external data fetched over the connection to populate a table is to be saved with the workbook; otherwise, false.
getSaveData() : boolean;
setSaveData(boolean)
True if the external data fetched over the connection to populate a table is to be saved with the workbook; otherwise, false.
setSaveData(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
getRefreshOnLoad()
True if this connection should be refreshed when opening the file; otherwise, false.
getRefreshOnLoad() : boolean;
setRefreshOnLoad(boolean)
True if this connection should be refreshed when opening the file; otherwise, false.
setRefreshOnLoad(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
getReconnectionMethodType()
Specifies what the spreadsheet application should do when a connection fails. The default value is ReConnectionMethodType.Required.
getReconnectionMethodType() : ReConnectionMethodType;
Returns
setReconnectionMethodType(ReConnectionMethodType)
Specifies what the spreadsheet application should do when a connection fails. The default value is ReConnectionMethodType.Required.
setReconnectionMethodType(value: ReConnectionMethodType) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | ReConnectionMethodType | The value to set. |
getOnlyUseConnectionFile()
Indicates whether the spreadsheet application should always and only use the connection information in the external connection file indicated by the odcFile attribute when the connection is refreshed. If false, then the spreadsheet application should follow the procedure indicated by the reconnectionMethod attribute
getOnlyUseConnectionFile() : boolean;
setOnlyUseConnectionFile(boolean)
Indicates whether the spreadsheet application should always and only use the connection information in the external connection file indicated by the odcFile attribute when the connection is refreshed. If false, then the spreadsheet application should follow the procedure indicated by the reconnectionMethod attribute
setOnlyUseConnectionFile(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
getOdcFile()
Specifies the full path to external connection file from which this connection was created. If a connection fails during an attempt to refresh data, and reconnectionMethod=1, then the spreadsheet application will try again using information from the external connection file instead of the connection object embedded within the workbook.
getOdcFile() : string;
setOdcFile(string)
Specifies the full path to external connection file from which this connection was created. If a connection fails during an attempt to refresh data, and reconnectionMethod=1, then the spreadsheet application will try again using information from the external connection file instead of the connection object embedded within the workbook.
setOdcFile(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
getSourceFile()
Used when the external data source is file-based. When a connection to such a data source fails, the spreadsheet application attempts to connect directly to this file. May be expressed in URI or system-specific file path notation.
getSourceFile() : string;
setSourceFile(string)
Used when the external data source is file-based. When a connection to such a data source fails, the spreadsheet application attempts to connect directly to this file. May be expressed in URI or system-specific file path notation.
setSourceFile(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
isNew()
True if the connection has not been refreshed for the first time; otherwise, false. This state can happen when the user saves the file before a query has finished returning.
isNew() : boolean;
setIsNew(boolean)
True if the connection has not been refreshed for the first time; otherwise, false. This state can happen when the user saves the file before a query has finished returning.
setIsNew(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
getName()
Specifies the name of the connection. Each connection must have a unique name.
getName() : string;
setName(string)
Specifies the name of the connection. Each connection must have a unique name.
setName(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
getKeepAlive()
True when the spreadsheet application should make efforts to keep the connection open. When false, the application should close the connection after retrieving the information.
getKeepAlive() : boolean;
setKeepAlive(boolean)
True when the spreadsheet application should make efforts to keep the connection open. When false, the application should close the connection after retrieving the information.
setKeepAlive(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
getRefreshInternal()
Specifies the number of minutes between automatic refreshes of the connection.
getRefreshInternal() : number;
setRefreshInternal(number)
Specifies the number of minutes between automatic refreshes of the connection.
setRefreshInternal(value: number) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | number | The value to set. |
getConnectionDescription()
Specifies the user description for this connection
getConnectionDescription() : string;
setConnectionDescription(string)
Specifies the user description for this connection
setConnectionDescription(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
isDeleted()
Indicates whether the associated workbook connection has been deleted. true if the connection has been deleted; otherwise, false.
isDeleted() : boolean;
setIsDeleted(boolean)
Indicates whether the associated workbook connection has been deleted. true if the connection has been deleted; otherwise, false.
setIsDeleted(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
getCredentialsMethodType()
Specifies the authentication method to be used when establishing (or re-establishing) the connection.
getCredentialsMethodType() : CredentialsMethodType;
Returns
setCredentialsMethodType(CredentialsMethodType)
Specifies the authentication method to be used when establishing (or re-establishing) the connection.
setCredentialsMethodType(value: CredentialsMethodType) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | CredentialsMethodType | The value to set. |
getBackgroundRefresh()
Indicates whether the connection can be refreshed in the background (asynchronously). true if preferred usage of the connection is to refresh asynchronously in the background; false if preferred usage of the connection is to refresh synchronously in the foreground.
getBackgroundRefresh() : boolean;
setBackgroundRefresh(boolean)
Indicates whether the connection can be refreshed in the background (asynchronously). true if preferred usage of the connection is to refresh asynchronously in the background; false if preferred usage of the connection is to refresh synchronously in the foreground.
setBackgroundRefresh(value: boolean) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | boolean | The value to set. |
getParameters()
Gets ConnectionParameterCollection for an ODBC or web query.
getParameters() : ConnectionParameterCollection;
Returns
getPowerQueryFormula()
Gets the definition of power query formula.
getPowerQueryFormula() : PowerQueryFormula;
Returns
getCommand()
The string containing the database command to pass to the data provider API that will interact with the external source in order to retrieve data
getCommand() : string;
setCommand(string)
The string containing the database command to pass to the data provider API that will interact with the external source in order to retrieve data
setCommand(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
getCommandType()
Specifies the OLE DB command type. 1. Query specifies a cube name 2. Query specifies a SQL statement 3. Query specifies a table name 4. Query specifies that default information has been given, and it is up to the provider how to interpret. 5. Query is against a web based List Data Provider.
getCommandType() : OLEDBCommandType;
Returns
setCommandType(OLEDBCommandType)
Specifies the OLE DB command type. 1. Query specifies a cube name 2. Query specifies a SQL statement 3. Query specifies a table name 4. Query specifies that default information has been given, and it is up to the provider how to interpret. 5. Query is against a web based List Data Provider.
setCommandType(value: OLEDBCommandType) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | OLEDBCommandType | The value to set. |
getConnectionString()
The connection information string is used to make contact with an OLE DB or ODBC data source.
getConnectionString() : string;
setConnectionString(string)
The connection information string is used to make contact with an OLE DB or ODBC data source.
setConnectionString(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |
getSecondCommand()
Specifies a second command text string that is persisted when PivotTable server-based page fields are in use. For ODBC connections, serverCommand is usually a broader query than command (no WHERE clause is present in the former). Based on these 2 commands(Command and ServerCommand), parameter UI can be populated and parameterized queries can be constructed
getSecondCommand() : string;
setSecondCommand(string)
Specifies a second command text string that is persisted when PivotTable server-based page fields are in use. For ODBC connections, serverCommand is usually a broader query than command (no WHERE clause is present in the former). Based on these 2 commands(Command and ServerCommand), parameter UI can be populated and parameterized queries can be constructed
setSecondCommand(value: string) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | string | The value to set. |