InterviewSolution
Saved Bookmarks
| 1. |
The variable that checks for availability of SSL support is ____________(a) have_ssl(b) has_ssl(c) avail_ssl(d) ssl_availThe question was asked in an internship interview.The doubt is from Secure Connections in portion Nulls and Conditions and Miscellaneous of MySQL |
|
Answer» CORRECT option is (a) have_ssl Explanation: After the SSL-capable SERVER is started, to verify that it supports SSL, connection is established with ‘MYSQL’ and the FOLLOWING query is issued: SHOW VARIABLES LIKE ‘have_ssl’. |
|