version

version

am 03.07.2002 15:07:16 von burbello_mysql

Hi,

I am using the component zeos, but I need to connect
to oracle version 7.3.4.

He gives me a error "ORA-03115 unsupported network
datatype or representation"

Anybody know if Do I get to connect Oracle 7.3.4??

Regards



sql, query


____________________________________________________________ ___________
Yahoo! Encontros
O lugar certo para encontrar a sua alma gĂȘmea.
http://br.encontros.yahoo.com/

------------------------------------------------------------ ---------
Before posting, please check:
http://www.mysql.com/manual.php (the manual)
http://lists.mysql.com/ (the list archive)

To request this thread, e-mail
To unsubscribe, e-mail
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Re: version

am 16.07.2002 18:24:44 von Alec.Cawley

> Please tell me if the MySQL 4.0.2-alpha Windows 95/98/NT/2000/XP (17.2M)
> supports the subselect command.

No version of MySQL currently supports subselects.

From http://www.mysql.com/doc/A/N/ANSI_diff_Sub-selects.html
"Subselects are currently being implemented in the 4.1 development
tree."

But 4.1 is probably quite a way ahead.

Alec



------------------------------------------------------------ ---------
Before posting, please check:
http://www.mysql.com/manual.php (the manual)
http://lists.mysql.com/ (the list archive)

To request this thread, e-mail
To unsubscribe, e-mail
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Re: version

am 14.01.2010 17:02:38 von tony.chamberlain

I am using RPM. And for Centos 5 it was installing a lower version
of mysql than what was installed with the system. That is why I want
to check before doing the RPM. I guess the alternative is to use the
latest version all the time, but not sure whether that will work on
the 4.5 version.

The other thing is, mysql appears to keep changing between
/etc/init.d/mysqld and /etc/init/mysql so I also have to do an
ls /etc/init.s/mysql* to figure out what to use to start which is also
kind of a pain.

-----Original Message-----
From: Johan De Meersman [mailto:vegivamp@tuxera.be]
Sent: Thursday, January 14, 2010 09:44 AM
To: tony.chamberlain@lemko.com
Cc: mysql@lists.mysql.com
Subject: Re: version

You *should* be using a package manager (perfectly fine RPMs available for
all your needs), but if you must do this, it's a reasonably safe bet to
right-align and zero-pad all your number to 4 digits, at which point you're
free to concatenate them and treat them as a single number.

14.12.5.0.19 then becomes 0014 0012 0005 0000 0019 which becomes
140012000500000019.

You'd probably be safe with 3 or maaaaaaaybe even two positions, depending
on how many releases get done :-)

The better-but-more-work way is to compare every number separately, starting
with the major release.


On Thu, Jan 14, 2010 at 4:21 PM, wrote:

> I have an install script that does some stuff with mysql (i.e. install,
> start, etc). It installs
> mysql Ver 14.12 Distrib 5.0.19, for pc-linux-gnu (i686) using readline 5.0
>
> This was good when we just used CentOS 4.5. Now we are doing some later
> CentOS versions and the mysql version may be higher.
>
> I want to do something like "mysql --version" and process the result and
> if the version is >= 5.0.19 skip the mysql installation and just do the
> other stuff. I can't compare as it is right now because the . and stuff
> may screw up the comparison (e.g. ver 5.2 will show as greater than 5.19
> eg).
>
> I want to know, if I break the individual pieces like 14 12 5 0 19 I can do
> some sort of calculation to determine a number that I can actually compare.
> Or can I just remove all the decimal points, like 14.12.5.0.19 becomes
> 14125019? I might have to make it like 14120050019 or something.
>
> What is an algorithm I can use?
>
>
> Thanks
>
>
>
> --
> MySQL General Mailing List
> For list archives: http://lists.mysql.com/mysql
> To unsubscribe: http://lists.mysql.com/mysql?unsub=vegivamp@tuxera.be
>
>


--
Bier met grenadyn
Is als mosterd by den wyn
Sy die't drinkt, is eene kwezel
Hy die't drinkt, is ras een ezel




--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe: http://lists.mysql.com/mysql?unsub=gcdmg-mysql-2@m.gmane.org

Re: version

am 14.01.2010 17:14:27 von Johan De Meersman

--00151774041c6040b1047d222e30
Content-Type: text/plain; charset=ISO-8859-1

On Thu, Jan 14, 2010 at 5:02 PM, wrote:

> The other thing is, mysql appears to keep changing between
> /etc/init.d/mysqld and /etc/init/mysql so I also have to do an
> ls /etc/init.s/mysql* to figure out what to use to start which is also
> kind of a pain.
>

Hmm... I'm no RedHat/CentOS man, but if there's also init.1 through init.6,
it should be pretty safe to ignore those - the scripts in there should be
symlinks to the init.d ones.


>
> -----Original Message-----
> From: Johan De Meersman [mailto:vegivamp@tuxera.be]
> Sent: Thursday, January 14, 2010 09:44 AM
> To: tony.chamberlain@lemko.com
> Cc: mysql@lists.mysql.com
> Subject: Re: version
>
> You *should* be using a package manager (perfectly fine RPMs available for
> all your needs), but if you must do this, it's a reasonably safe bet to
> right-align and zero-pad all your number to 4 digits, at which point you're
> free to concatenate them and treat them as a single number.
>
> 14.12.5.0.19 then becomes 0014 0012 0005 0000 0019 which becomes
> 140012000500000019.
>
> You'd probably be safe with 3 or maaaaaaaybe even two positions, depending
> on how many releases get done :-)
>
> The better-but-more-work way is to compare every number separately,
> starting
> with the major release.
>
>
> On Thu, Jan 14, 2010 at 4:21 PM, wrote:
>
> > I have an install script that does some stuff with mysql (i.e. install,
> > start, etc). It installs
> > mysql Ver 14.12 Distrib 5.0.19, for pc-linux-gnu (i686) using readline
> 5.0
> >
> > This was good when we just used CentOS 4.5. Now we are doing some later
> > CentOS versions and the mysql version may be higher.
> >
> > I want to do something like "mysql --version" and process the result and
> > if the version is >= 5.0.19 skip the mysql installation and just do the
> > other stuff. I can't compare as it is right now because the . and stuff
> > may screw up the comparison (e.g. ver 5.2 will show as greater than 5.19
> > eg).
> >
> > I want to know, if I break the individual pieces like 14 12 5 0 19 I can
> do
> > some sort of calculation to determine a number that I can actually
> compare.
> > Or can I just remove all the decimal points, like 14.12.5.0.19 becomes
> > 14125019? I might have to make it like 14120050019 or something.
> >
> > What is an algorithm I can use?
> >
> >
> > Thanks
> >
> >
> >
> > --
> > MySQL General Mailing List
> > For list archives: http://lists.mysql.com/mysql
> > To unsubscribe: http://lists.mysql.com/mysql?unsub=vegivamp@tuxera.be
> >
> >
>
>
> --
> Bier met grenadyn
> Is als mosterd by den wyn
> Sy die't drinkt, is eene kwezel
> Hy die't drinkt, is ras een ezel
>
>
>
>
> --
> MySQL General Mailing List
> For list archives: http://lists.mysql.com/mysql
> To unsubscribe: http://lists.mysql.com/mysql?unsub=vegivamp@tuxera.be
>
>


--
Bier met grenadyn
Is als mosterd by den wyn
Sy die't drinkt, is eene kwezel
Hy die't drinkt, is ras een ezel

--00151774041c6040b1047d222e30--