OH3 + 10.0.28-MariaDB-2+b1 all items list show in db

Hello,
i have problem because my persistance file mariadb.persist looksk like this:

Strategies {
        everyMinute     : "0 * * * * ?"
        every5Minutes : "0 */5 * * * ?"
        everyHour   : "0 0 * * * ?"
        everyDay    : "0 0 0 * * ?"
        default = everyChange
}

Items {
         Temp_Nawiew, Temp_Agregat_Chlodnia, Temp_Komora_Chlodnia, Temp_Agregat_Mroznia, Temp_Komora_Mroznia : strategy = every5Minutes, restoreOnStartup
         chlodnia_drzwi, chlodnia_agregat, mroznia_drzwi, mroznia_agregat : strategy = everyChange
}

and jdbc.cfg:

url=jdbc:mariadb://127.0.0.1:3306/openhab?useUnicode=true&characterEncoding=utf8&useSSL=false&useLegacyDatetimeCode=false&serverTimezone=Europe/Warsaw
user=user
password=passwd
tableUseRealItemNames=true

add-on i have maridb persistence jdbc.
In databse i should look items from .persist file but i look all items from openhab, what i should do to repere this ?

As you are using the JDBC add-on, you need to put your configuration in filename jdbc.persist

With no jdbc.persist, everything gets defaulted.

thx, very much.