How to connect rasa from mysql

hey i want to save my user response in my database how can i do this?

hey @pkumar you can use Tracker Stores to store your user response to mysql db,

In your endpoints.yml ,add this values

tracker_store:

store_type: mysql 
url="localhost:(port number)",
database="rasa",
user="yourusername",
password="yourpassword"

Note : I haven’t tried out this but you can try this.