sql front end forms -


i starting learn sql , silly question code used front end, user friendly input database or table? example when fill in contact information website information doesn't go off inputs individually in table/database using sql syntax, how sql tied individual form sections being filled in customer? responsibility of database manager create link or of web developer through html code?

this open question because there ton in middle guess best way summarize it

in modern web development (not looking @ aspx or mvc5 razor templates) have client side application web technologies client side lands in area of html5, css3, javascript creates ui user. once form filled out there 2 ways submit data 1 via form attribute (you can read more in link) have attribute called method defines type of http protocol send data can read different type here , action server endpoint. there ton more info why has it's own books written should read about. other method via custom javascript using xmlhttprequest

this http protocol send data server have written in massive amounts of languages generic c#, java, node.js(javascript), php, server listen request , things such validation , handle business logic. @ point once goes dandy , data gets sanitized , processed database, operation can take place. server open connection desired rdbms database (mssql, mysql, postgresql) or nosql db (mongodb, couchdb) @ point run sql provided server or execute procedure on db sanitized data passed in.

essentially small workflow be

  • customer enters data form
  • custom submits data , passes web server via http method (get,post,put,delete)
  • server receives http request , reads it. verification , based on url called server execute specific sql or stored procedure action
    • lets action add new order, server send database sql command such insert order values (id, price, date)

the rough picture beginning steps enterprise n-tier architecture in of cases. there enough key words google , research on along way better understanding.


Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -