InterviewSolution
Saved Bookmarks
| 1. |
Connections to remote servers always use TCP/IP.(a) True(b) FalseThis question was posed to me in a job interview.This question is from Connecting to the Server in portion MySQL Programs Using C of MySQL |
|
Answer» CORRECT option is (a) True The explanation: The connections to remote servers ALWAYS USE TCP/IP. To CONNECT to the server running on remote.example.com using the default port number (3306) this command is used: mysql –host=remote.example.com. |
|