Asterisk configure with Mysql

Hello everyone,

I changed my code like this:

exten => xxxx, 1, Answer;
exten => xxxx, n, Set (DB (test / count) = 1234)
exten => xxxx, n, Set (COUNT = $ {DB (test / count)})
exten => xxxx, n, Authenticate ($ {COUNT});

The question is how loaded the variable “test / count = 1234”. How can I now find it in MySQL in order to change it in MySQL?

Can anyone give a help?

The Asterisk DB is not MySQL so you won’t find those values there.

Yes, now I understood that to configure it, I’ll set up the DB and not MySQL.

Thanks.