python - Wich process establishes the connection with the database server? -
let's suppose have single host there web server , database server.
an external application sends http request web server access database.
the data access logic made example python api.
the web server takes request , python application calls method connect database, e.g. mysqldb.connect(...).
which process establishes connection database server , communicates it? web server process?
thank you!
yes, python application lives inside of web server process, process establish connection database server.
Comments
Post a Comment