Skip to content
Advertisement

does mySQL database work separate from programming languages [closed]

I want to make sure about somethings

if I build a project and use SQL database like MySql

  • do I have to work with javascript and Mysql separately
  • should I manage a database using a programming language like python or javascript(node)
  • do I should make CRUD using javascript to Mysql and create a table and database it from MySql
  • I’m new in SQL database Should I create for instance some functionality for a database in order to some stuff with it

finally, if you have any experience working with SQL give any information working with for instance javascript and Mysql

Advertisement

Answer

do I have to work with javascript and Mysql separately

Yes

should I manage a database using a programming language like python or javascript(node)

You can also consider PHP. Its made for interaction with SQL databases.

Answers to most of Your questions can be found in this thread: Can JavaScript connect with MySQL?

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement