Click here to Skip to main content
15,887,027 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
HI ,
Can we insert data to sql and retrieve data from SQL using PURE Angular Js WITHOUT using any other support programming like C#, Asp.net etc..
Thankyou..

What I have tried:

Insertion and Selection in SQL using AngularJS
Posted
Updated 3-Jul-16 23:08pm

1 solution

1. AngularJS has no capabilities to directly connect a DB...
2. To connect a DB directly from the client (some JavaScript) you have to expose the DB to the web, which is mostly not such a good idea...

There is nothing more robust, than using some API to access the database. It let you replace the actual storage, add more and more UI solutions and extend features without rewriting the whole code...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900