KnowledgeBoat Logo
|

Informatics Practices

Why do you need connection to an SQL database in order to get data from a table ?

Python Pandas

1 Like

Answer

We need a connection to an SQL database in order to get data from a table because a database can be accessed by many programs simultaneously, and a connection represents a unique session with the database. This connection allows us to send SQL statements to the database and retrieve the results.

Answered By

1 Like


Related Questions