Re: How do I get version information from a MySQL server?

2001-12-13 Thread alec . cawley
> How do I go about querying a mySQL server for version information? SELECT VERSION() - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive)

Re: How do I get version information from a MySQL server?

2001-12-13 Thread Ken Guest
On Déar, 2001-12-13 at 14:42, Colin Hill wrote: > How do I go about querying a mySQL server for version information? mysql> select version(); +-+ | version() | +-+ | 3.23.44-log | +-+ 1 row in set (0.01 sec) mysql> -- The duck quacks. -

Re: How do I get version information from a MySQL server?

2001-12-13 Thread Sinisa Milivojevic
Colin Hill writes: > How do I go about querying a mySQL server for version information? > > As part of a software installer (written in Perl) I'd like ot be able to > connect to the mySQL server designated by the user and have it report > it's version. Is there a way to do this? > > So far I've

Re: How do I get version information from a MySQL server?

2001-12-13 Thread Ryan Fox
- Original Message - From: "Colin Hill" <[EMAIL PROTECTED]> > So, is there a way to retrieve the version information directly from the > server using some pseudo SQL query? show variables like 'version'; Ryan Fox - B

How do I get version information from a MySQL server?

2001-12-13 Thread Colin Hill
How do I go about querying a mySQL server for version information? As part of a software installer (written in Perl) I'd like ot be able to connect to the mySQL server designated by the user and have it report it's version. Is there a way to do this? So far I've been relying on the version infor