Hi,
I have been working on a simple web application to track running performance. Currently I am using the MySQL database. I have a form taking in Time of run as a string. I was running into issues trying to store the run time as a time via MySQL. I joined Strava hoping I could inspect the HTML with hopes of helping me with my issue.
First, I observed that information is being stored as JSON objects. I also observed that the inputs of the form we're taking in the time for a run as a number. I was hoping to engage in a conversation with a developer to assist me as I try to solve my issue and continue building my application.
My questions are can I accomplish my goal with MySQL as my database or will I need to convert to a NoSQL database? Does my information need to be input as a JSON object? What steps should I take to accomplish storing "duration" of a run in my Web Application?