Click here to Skip to main content
15,891,708 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
it might be a silly question as i am newbie.

I do not understand how a x language and SQL work together, I want to have a basic

knowledge on how they relate with each other.

how they work together and where they meet?

what is SQL and what does it work and serve in a real application let's say a web app?

thank you in advance

What I have tried:

I am really in need to know and have knowledge.
Posted
Updated 3-May-18 8:00am

 
Share this answer
 
Comments
Maciej Los 3-May-18 14:12pm    
5ed!
Most database systems (for example SQL Server) locally run a server on your computer, employing the TCP protocol. When you create an application that works with a database, your application will establish a connection with the server and send commands/queries, and the server will perform the database operations and return the results.

There are also serverless databases (for example SQLite). These database systems read and write directly to disk files. In your applications, SQL queries are interpreted (and you would not write the interpretation code yourself, but use an already existing library) and information is just written to, or fetched from, these files as the SQL queries instructed.
 
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