# Configuring databases

The IFS OData Connector can use sqlite (default) Sql Server or Postgres as database for its internal data. It can (but does not have to) use a separate database for it's communication logs.&#x20;

This is controlled via the appsettings.xml file with on-premises hosting and typically via app service configuration when hosting in Azure. If any of these values are changed, the service must be restarted for them to have an effect.&#x20;

**DbKind** controls what kind of database to use for everything except communication logs, allowed values: sqlite,sqlserver,postgres&#x20;

**DbKindCommLog** controls  controls what kind of database to use for http communication logs.

**ConnectionStrings,** **LocalDb** and **CommLogDb** respectively must be a valid connection string to selected database.&#x20;

If **DbKindCommLog** and **CommLogDb** connection strings are not defined, the **DbKind** and **LocalDb** database settings will be used for communication logs as well as other data.&#x20;

Example with communication log stored in sql server and other data in sqlite. Other parts of appsettings.xml omitted for clarity.&#x20;

```xml
 <DbKind>sqlite</DbKind>
 <DbKindCommLog>sqlserver</DbKindCommLog>
	
 <ConnectionStrings>
     <LocalDb>Data Source=db.db</LocalDb>
     <CommLogDb>Server=databaserServerX;Database=commlog;User Id=dbuser;Password=secret;Encrypt=False</CommLogDb>
 </ConnectionStrings>
```


---

# Agent Instructions: 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:

```
GET https://help.novacuraflow.com/connectors/areas/business-systems/ifs-applications/ifs-odata/configuring-databases.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
