View Single Post

   
  #3 (permalink)  
Old 02-28-2008, 11:27 AM
Mikhail Oleynik
 
Posts: n/a
Default Re: How to find out the current version of the MySQL installation ?

> Command line: mysql --version
This will give you version of client libraries.

Run this command line to obtain server version: mysql -u <username> -p
-h <hostname> -e "select version()"

Reply With Quote