I'm using Firebase as it seems to be the simplest database solution for Android. I'm just playing around with it to get a bit of a feel for it. The biggest thing confusing me right now though is how (if possible) you could represent the database in some form of table like in excel. I know Firebase exports in JSON which isn't exactly designed to be displayed like that, but surely there is some system to be able to do it? Or would I have to write my own program that produces a CSV file?
For the sake of an example, I whipped up an application to record trip info for a taxi type service. It records the fares name, destination and the cost of the trip. Here's an example of the JSON.
{
"Jobs" : {
"job0" : {
"Cost" : "$30",
"Destination" : "Demo Dest 1",
"Name" : "Demo Name 1"
},
"job1" : {
"Cost" : "$40",
"Destination" : "Demo Dest 2",
"Name" : "Demo Name 2"
}
},
"job number" : 2
}
Now say I want to produce a spreed sheet of just the job info. It would have column headers of "Name", "Destination" and "Cost" and it would list the corresponding information in each.
Would something like this be possible or is it just wishful thinking? If not, is there an online table based database tool you'd recommend for Android that is also easy?
Thanks in advance, I really appreciate it.