Combine SQL and coding language | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Combine SQL and coding language

How can we use sql through coding languages like Java and c++, like there is file handling. Hope can we store and manipulate data efficiently though sql

29th Oct 2019, 3:39 PM
Shivank Prajapati
Shivank Prajapati - avatar
4 Answers
+ 7
Php and MySQL are often used in the web back-end.
30th Oct 2019, 1:16 AM
Sonic
Sonic - avatar
+ 2
What language do you want to use. For sql, you can use SQL-express. It is free. In C# you then would use A sqlconnection, a sqlCommand and a sqlreader https://www.sololearn.com/Discuss/1461369/how-to-connect-c-app-to-sql-server
29th Oct 2019, 9:28 PM
sneeze
sneeze - avatar
+ 1
PHP and MySQL (Traditional) Nodejs and MongoDB
31st Oct 2019, 9:59 AM
Dinesh Bala
Dinesh Bala - avatar
0
most languages will have a library or module that you can include into your code (something like "include mysql;") and it will give you access to functions and classes that let your code create and access the desired database. check your programming language reference manual for it, or Google the language name and SQL or database to find out about it
30th Oct 2019, 11:38 PM
Nathan Stanley
Nathan Stanley - avatar