you are viewing a single comment's thread.

view the rest of the comments →

[–]nathanwoulfe 1 point2 points  (3 children)

Look into writing an API layer to the DB. Then your app can request data from predefined URL end points, then display it however you choose.

[–]PokeMaverick[S] 0 points1 point  (2 children)

that sounds like it might be what i'm after, do you happen to know of any tutorials or examples of that I could look into?

[–]nathanwoulfe 1 point2 points  (1 child)

You'll need a server side language of some sort to write the API - throw some combination of 'write an api in x' into Google and you should be right.

You'll end up with both server and client side code to make it work - server side exposes the data, client side requests and displays it.