Hey, I have a custom table with on column containing data, Is their a way to take all that data in the custom table and make it available as an object that I can manipulate with Javascript ?
Regards, Dominic
Use REST. Check out the documentation.
You can do in your SQL query with FOR JSON statement: SELECT * FROM yourtable FOR JSON AUTO. Then follow this example and return it to the client.
SELECT * FROM yourtable FOR JSON AUTO
Please, sign in to be able to submit a new answer.