> For the complete documentation index, see [llms.txt](https://help.holixa.com/holixa-erp-picker/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.holixa.com/holixa-erp-picker/common-information/application-configuration/configuration-file-parameters/section-settings.md).

# Section \[Settings]

* **`ConnectionString`**: Basic configuration for connection to the data source (see chapter [Examples of connections to data sources](/holixa-erp-picker/common-information/application-configuration/examples-of-connections-to-data-sources.md)).&#x20;
* **`ConnectionSelectCommand`**: Sets the basic definition of columns and links between tables from which the data will be read, including conditions and sorting (standard SQL syntax).
* **`ConnectionSelectHeaders`**: (OPTIONAL) List of names for the column headers of the data table.
* **`MainFormLabel`**: Name of the main window of ERP Picker, not used since version 2.1.3.0.
* **`ShowAll`**: `True` or `False`. `True` ensures that immediately after the ERP Picker window is launched, the data table is populated with all records that match the query specified in the `ConnectionSelectCommand`. With a large amount of data, it can overload the network connection and cause delays in data retrieval speed.
* **ApplyFilterDelay**: (OPTIONAL) Time in milliseconds, counting down after the last change of filter values in the Holixa ERP Picker data grid (data table). When it expires, the set filter will be applied. Using this parameter improves application performance because it increases the likelihood that the filter will not be applied prematurely, which would result in unnecessary load on the data source.
* **FullRowSelect**: (OPTIONAL) `True` (default value) or `False`. Affects the way data is collected in the table. If `True`, the entire row is selected when clicked. If set to `False`, the click selects only one cell (the reason for this is the ability to copy cell values for other purposes).
* **SheetMetalThicknessDbFieldName**: The name of the database field by which the values in the table are automatically filtered according to the sheet thickness of the part.
* **SheetMetalThicknessUseDotAsDecDelim**: `False` or `True` (default). If `True`, a dot is used as a decimal separator in the value for filtering by sheet thickness (i.e. regardless of the "CurrentCulture" setting on the computer).
* **InitiateFilterDbFieldName**: The name of the database field for the initial filtering.
* **InitiateFilterValue**: value for the default filtering.
* **`AcceptVirtualComponent`**: `True` or `False`. If True, writing to the iProperties of virtual components is allowed.

A sample of part of the ini file is below.

{% code lineNumbers="true" %}

```ini
[Settings]
ConnectionString=Provider=Microsoft.ACE.OLEDB.12.0;Data Source=d:\MATDBTK.accdb
ConnectionSelectCommand=SELECT ID, Group, Number, Name01, Description, Standard, Count, Material FROM MATDBEN
ConnectionSelectHeaders=
MainFormLabel=ERP Picker
LoggingLevel=Warning
ShowAll=true
ApplyFilterDelay=1200
FullRowSelect=True
SheetMetalThicknessDbFieldName=
SheetMetalThicknessUseDotAsDecDelim=False
InitiateFilterDbFieldName=
InitiateFilterValue=
AcceptVirtualComponent=True
```

{% endcode %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.holixa.com/holixa-erp-picker/common-information/application-configuration/configuration-file-parameters/section-settings.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
