Encrypted connections can be established using . . . . . . . .
A. exec_stmt_ssl
B. exec_ssl_stmt
C. exec_stmnt_ssl
D. exec_ssl_stmnt
Answer: Option A
Solution (By Examveda Team)
This question is about how to make a secure connection to your MySQL database. Think of it like sending a secret message!The word "ssl" in the options stands for "Secure Sockets Layer", which is a way to encrypt the data sent between your computer and the database server.
Out of the options given, option D: exec_ssl_stmnt is the closest to the correct way to establish an encrypted connection. While this is not the exact command used in MySQL, it helps to illustrate the idea of using a function related to "ssl" to secure your connection.
To actually create an encrypted connection in MySQL, you would use a combination of settings and commands.
Remember that "ssl" is crucial for protecting sensitive information when working with databases!

Join The Discussion