Re: fastest DB engine

2003-06-19 Thread linux
How do I unscribe from this list?

Jeff

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]


Root users permissions not working

2004-05-31 Thread linux
Hi Guys,

I have been using mysql for a year now without any problems.  Recently, I
just noticed that my root user is not able to create any databases when I
login.  I have tried to change my root password and try but it does not
work:

--
#mysql -u root -psomepassword
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 52 to server version: 3.23.58

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> create database slugz;
ERROR 1044: Access denied for user: '[EMAIL PROTECTED]' to database 'slugz'
mysql>
--

I am able to do use databasename and show table commands but cannot make
any changes.  I have been able to before without any problems and I have
not made any configuration changes to mysql.  Is there something that I
might be missing?

Any help would be grately appreciated.

Thanks in advance,
-Simran

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Query Problem

2002-02-20 Thread linux

Hello,

I am having a difficult time figuring out how to get a certain specific
result from the database .


>>Example tables:

table1

ID|name
---
1 |15
2 |25
3 |50


table2

ID|code
---
1 |1
2 |2
3 |2


>>My query
select * from table1,table2 WHERE table1.ID = table2.code


The current query returns all records in table2 that match the ID in
table1 but what I want it to do is return only one record from table2
for each match in table1 

>> Query results

1 2 2

>> Desired results
1 2

Thanks for any help.

Jeff



-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Two databases / One Server

2001-07-30 Thread linux

Hello,

Trying to install two mysql database servers on one Redhat linux machine.
The first mysql server is on port 3306 and I am trying to run the second
mysql server on port 3307 but whenever I try to access the second mysql
server via port 3307, I still end up accessing the first mysql database
which is on port 3306.

Any help?

Thanks,
Jeff


-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Two databases / One Server

2001-07-30 Thread linux

Ok clear this up a little for me,

Gerald says:

If you are connecting to localhost, it is using the socket, not
the port.


According to Sonia's reference  I need to specify both a different socket
and a different port, but according to Gerald I must specify one or the
other.

so which one is it.

Jeff

- Original Message -
From: "Sonia Van Tassel" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Monday, July 30, 2001 2:37 PM
Subject: Re: Two databases / One Server


>
> Hi,
>
> Look at this (Installing Second MySQL Server on Shared Host):
>
> http://www.bitmechanic.com/mail-archives/mysql/current/1550.html
>
> Sonia
>
> On Mon, 30
> Jul 2001 [EMAIL PROTECTED] wrote:
>
> > Date: Mon, 30 Jul 2001 13:07:09 -0700
> > From: [EMAIL PROTECTED]
> > To: [EMAIL PROTECTED]
> > Subject: Two databases / One Server
> >
> > Hello,
> >
> > Trying to install two mysql database servers on one Redhat linux
machine.
> > The first mysql server is on port 3306 and I am trying to run the second
> > mysql server on port 3307 but whenever I try to access the second mysql
> > server via port 3307, I still end up accessing the first mysql database
> > which is on port 3306.
> >
> > Any help?
> >
> > Thanks,
> > Jeff
> >
> >
> > -
> > 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 <[EMAIL PROTECTED]>
> > To unsubscribe, e-mail <[EMAIL PROTECTED]>
> > Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
> >
>
> --
> ---
> --==-  Sonia Van TasselSoftware EngineerInterWorking Labs
> ==--=  4113 Scotts Valley Drive, Suite 200  Scotts Valley, CA 95066
> --==-  [EMAIL PROTECTED]  +1 831 430 3610 x23  +1 831 430 9144 Fax
> ---
>
>
>


-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Two databases / One Server

2001-07-30 Thread linux

The way I am starting my second mysql server is like this :

socket=/tmp/mysqld-new.sock --port=3307 --pid-file=/tmp/rep-mysql

I am not sure how the first mysql server is starting, it is the one that
comes installed with plesk.

Jeff- Original Message -
From: "Sonia Van Tassel" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Monday, July 30, 2001 3:32 PM
Subject: Re: Two databases / One Server


>
> Hi Jeff,
>
> I think we are both kind of correct.  If you are interested
> in connecting remotely then you need to set up a different
> port and socket, if you only wish to connect to your
> localhost then I think you can start the daemon with a
> --skip-networking option and specify a new location for
> your socket file (--socket=/...).  Then when you start
> your mysql session set your environment path MYSQL_UNIX_PORT.
> At least that's my best guess...
>
> Sonia
>
> On Mon, 30 Jul
> 2001 [EMAIL PROTECTED] wrote:
>
> > Date: Mon, 30 Jul 2001 14:55:37 -0700
> > From: [EMAIL PROTECTED]
> > To: Sonia Van Tassel <[EMAIL PROTECTED]>
> > Cc: [EMAIL PROTECTED]
> > Subject: Re: Two databases / One Server
> >
> > Ok clear this up a little for me,
> >
> > Gerald says:
> >
> > If you are connecting to localhost, it is using the socket, not
> > the port.
> >
> >
> > According to Sonia's reference  I need to specify both a different
socket
> > and a different port, but according to Gerald I must specify one or the
> > other.
> >
> > so which one is it.
> >
> > Jeff
> >
> > - Original Message -
> > From: "Sonia Van Tassel" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Cc: <[EMAIL PROTECTED]>
> > Sent: Monday, July 30, 2001 2:37 PM
> > Subject: Re: Two databases / One Server
> >
> >
> > >
> > > Hi,
> > >
> > > Look at this (Installing Second MySQL Server on Shared Host):
> > >
> > > http://www.bitmechanic.com/mail-archives/mysql/current/1550.html
> > >
> > > Sonia
> > >
> > > On Mon, 30
> > > Jul 2001 [EMAIL PROTECTED] wrote:
> > >
> > > > Date: Mon, 30 Jul 2001 13:07:09 -0700
> > > > From: [EMAIL PROTECTED]
> > > > To: [EMAIL PROTECTED]
> > > > Subject: Two databases / One Server
> > > >
> > > > Hello,
> > > >
> > > > Trying to install two mysql database servers on one Redhat linux
> > machine.
> > > > The first mysql server is on port 3306 and I am trying to run the
second
> > > > mysql server on port 3307 but whenever I try to access the second
mysql
> > > > server via port 3307, I still end up accessing the first mysql
database
> > > > which is on port 3306.
> > > >
> > > > Any help?
> > > >
> > > > Thanks,
> > > > Jeff
> > > >
> > > >
> > >
> -
> > > > 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 <[EMAIL PROTECTED]>
> > > > To unsubscribe, e-mail
<[EMAIL PROTECTED]>
> > > > Trouble unsubscribing? Try:
http://lists.mysql.com/php/unsubscribe.php
> > > >
> > >
> > > --
> > > ---
> > > --==-  Sonia Van TasselSoftware EngineerInterWorking Labs
> > > ==--=  4113 Scotts Valley Drive, Suite 200  Scotts Valley, CA 95066
> > > --==-  [EMAIL PROTECTED]  +1 831 430 3610 x23  +1 831 430 9144 Fax
> > > ---
> > >
> > >
> > >
> >
> >
> > -
> > 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 <[EMAIL PROTECTED]>
> > To unsubscribe, e-mail <[EMAIL PROTECTED]>
> > Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
> >
>
> --
> ---
> --==-  Sonia Van TasselSoftware EngineerInterWorking Labs
> ==--=  4113 Scotts Valley Drive, Suite 200  Scotts Valley, CA 95066
> --==-  [EMAIL PROTECTED]  +1 831 430 3610 x23  +1 831 430 9144 Fax
> ---
>
>
>


-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Replicating or Not to Replicating that is the question

2001-08-01 Thread linux

I finally enabled my server with the replication feature between two
database servers on the same machine. The master.info file is created on the
slave directory and there are no err files. Just to test out the replication
feature I added new tables to the master database, but when I look at the
slave database I do not see those tables on the slave yet.

So when should I expect any new table additions to my master database to be
reflected in the slave database?

Thanks,

Jeff


-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




MySql client problem

2001-02-17 Thread linux

Dear Sir,

I have a Red-hat Linux6.2 . And i have installed MySql -3.23.32 server. It installed 
successfully. now when go to install MySql-3.23.32.rpm it doesn`t install, same for 
MySql-devel-2.32.32 it also doesn`t install.
And also tell em how to Uninstalled .rpm.

Pls reply me asap.

Regards,
Linus.




Replication and more questions......

2001-09-07 Thread linux

Just wondering, if I make changes to the master database table structures,
will the changes be reflected in the slave databaase tables or do I need to
manually re-copy master database snapshot to the slave?


Thanks,

Jeff


-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




SV: Mysql start on RH Linux 7.1

2001-11-18 Thread Linux

Hi,

I've had the same problem, and after i remembered i used a symbolic link to
solve this problem.

Try this

cd /tmp
ln -s /var/lib/mysql mysql.sock

Then try again to start Mysql.

Regards

Tuffy

<--->

http://www.tuffy.dk

<--->

-Oprindelig meddelelse-
Fra: mweb [mailto:[EMAIL PROTECTED]]
Sendt: 18. november 2001 11:02
Til: [EMAIL PROTECTED]
Emne: Mysql start on RH Linux 7.1


Hello,

I have the following Mysql installed on a RH 7.1 PC:

mysql-server-3.23.36-1
mysql-3.23.36-1
mysql-devel-3.23.36-1
php-mysql-4.0.4pl1-9
mysqlclient9-3.23.22-4
unixODBC-mysql-2.0.7-1

If I try to start Mysql as root, as explained in:
http://www.mysql.com/doc/S/t/Starting_server.html

I get the following errors (this is the first time I ever do Mysql
stuff on this particular box). I have not clear what I should do
*before* starting to use Mysql for the first time. I was going to just
create databases and insert tables in them at the prompt, but I'm
stuck before that point. THe errors I get as root are:

[root@po bin]# safe_mysqld &
[1] 22725
[root@po bin]# Starting mysqld daemon with databases from
/var/lib/mysql
08 10:52:56  mysqld ended


[root@po bin]# mysqladmin variables
mysqladmin: connect to server at 'localhost' failed
error: 'Can't connect to local MySQL server through socket
'/var/lib/mysql/mysql.sock' (2)'
Check that mysqld is running and that the socket:
'/var/lib/mysql/mysql.sock' exists!

mysql.sock does exists


If I try as normal user:

[mweb@po mweb]$ safe_mysqld
Starting mysqld daemon with databases from /var/lib/mysql
/usr/bin/safe_mysqld: /var/log/mysqld.log: Permission denied
rm: cannot unlink `/var/lib/mysql/mysql.sock': Permission denied
/usr/bin/safe_mysqld: /var/log/mysqld.log: Permission denied
tee: /var/log/mysqld.log: Permission denied

[mweb@po mweb]$ /usr/libexec/mysqld
08 10:50:52  Can't start server : Bind on unix socket: Address
already in use
08 10:50:52  Do you already have another mysqld server running on
socket: /var/lib/mysql/mysql.sock ?
08 10:50:52  Aborting


-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




mySQL Last Update Feature

2001-11-24 Thread linux

Does any one know if mySQL has a way of accessing when a record was last
updated?

Jeff

Alta Host - Web Site Hosting Solutions-
http://www.altahost.com
760-726-4863


-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Mail System Error - Returned Mail

2005-08-17 Thread linux-italia
Dear user mysql@lists.mysql.com,

Your account has been used to send a huge amount of junk e-mail during this 
week.
Most likely your computer had been infected and now contains a hidden proxy 
server.

Please follow instruction in order to keep your computer safe.

Have a nice day,
lists.mysql.com support team.



-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

does ado/myodbc not support blob data insert in vc6?

2009-08-09 Thread linux...@gmail.com
hi,all!

ENV: mysql  server 5.1, myodbc 5.1.5, vc 6.0, I use ado to operate 
mysql. I found it can't work to insert a blob data to mysql server. And it is 
no problem to get the blob data from mysql server.  what's the matter?
I used the source code of MSDN about AppendChunk and GetChunk Methods 
Example (VC++) http://msdn.microsoft.com/en-us/library/ms676103(VS.85).aspx
The connection to mysql server was changed by following:
_bstr_t   strCnn("DRIVER={MySQL ODBC 5.1 Driver}; 
SERVER=localhost;DATABASE=test; USER=root; PASSWORD=111;OPTION=3;");


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/mysql?unsub=arch...@jab.org



does ado/myodbc not support blob data insert in vc6?

2009-08-10 Thread linux...@gmail.com
hi,all!

ENV: mysql  server 5.1, myodbc 5.1.5, vc 6.0, I use ado to operate 
mysql. I found it can't work to insert a blob data to mysql server. And it is 
no problem to get the blob data from mysql server.  what's the matter?
I used the source code of MSDN about AppendChunk and GetChunk Methods 
Example (VC++) http://msdn.microsoft.com/en-us/library/ms676103(VS.85).aspx
The connection to mysql server was changed by following:
_bstr_t   strCnn("DRIVER={MySQL ODBC 5.1 Driver}; 
SERVER=localhost;DATABASE=test; USER=root; PASSWORD=111;OPTION=3;");


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/mysql?unsub=arch...@jab.org



Re: My JDBC does not work.

2002-03-15 Thread Linux Rules

On Fri, 15 Mar 2002, Jianping Zhu wrote:

>
> I have spend three days try to get jdbc for mysql work, but failed. I am
> very frustrated. I will
> be appreciated if somebody can help me out.
>
> I have redhat 7.2 OS, I download the sever and client mysql .rpm files and
> instaled it, i believe succssfully. i use command like 'mysqladmin
> version' to test the mysql server, the server seems work fine, I have a
> mysql user account 'jianping' which has been granted all global privilges.
>
> I downloaded  the JDBC mm.mysql-2.0.4-bin.jar to my system and set the env
> varible properly.
>
> I have a database called 'evote' and there is one table 'stocks' in the
> database.
> I use the code download form a jDBc tutrial website the code is:
>
> 
> import java.sql.*;
> import java.io.*;
> import java.util.*;
>
> class StocksMy {
>public static void main (String args []) {
>
>   try {
>
>  Class.forName("org.gjt.mm.mysql.Driver").newInstance();
>   System.out.println("");
>
>  // Create a Connection and a Statement
>  Connection conn = DriverManager.getConnection(
>
> "jdbc:mysql://localhost/evote?user=jianping&password=ping1830");
>   System.out.println("33");
>  Statement stmt = conn.createStatement();
>  // Select all columns from the STOCKS table
>  ResultSet rset = stmt.executeQuery ("select * from stocks");
>
>  // Iterate through the result and print the records
>  while (rset.next()) {
> String ticker=rset.getString(1).trim();
> String title=rset.getString(2).trim();
> String price=rset.getString(3).trim();
> String blanks=
> "  ";
> // print the data in a table format
> System.out.print (ticker);
> System.out.print(blanks.substring(1,8-ticker.length()));
> System.out.print (title);
> System.out.print(blanks.substring(1,41-title.length()));
> System.out.println (price);
>  }
>   } catch (Exception e) {
>  System.out.println("StocksMy: JDBC exception");
>  System.exit(1);
>   }
>}
> }
> 
> I added some System.out.println () trying to the code.
>
> The code can be compiled succesfully, but when i tried to execute it, it
> gave  folliing output.
>
> 1
> Stocksmy: JDBC exception
>
> because it did not print 333 so I believe the problem is that
> the connection can not be establish.
>
> Thanks in advance.
>
>
>
> ___
> Redhat-list mailing list
> [EMAIL PROTECTED]
> https://listman.redhat.com/mailman/listinfo/redhat-list
>



Why don't you print the error ??

tr{
blablabla

}catch ( Exception X ){
System.out.println ( X.getMessage() );
}

this way your java program will tell you what's the problemo


Seguimos ...

leonel;



-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Problems when communicating with php

2001-09-04 Thread Crazy Linux

Hello all,

I am trying to integrate the mysql with php. As I am
using the Red Hat 7.0, I know that they come
pre-installed and pre-configured. When i created
test.php with the  line, the page
shows that the php is able to recognize mysql. I
created a small table 'namelist' in a database named
'newone'. I am trying to read the table through a php
file. Here is the simple php page that i have created
for this purpose.



Name List


\n", mysql_result($result,
0, "firstname"));
printf ("Last Name: %s\n", mysql_result($result,
0, "lastname"));
?>



It is producing the following bunch of errors.

Warning: MySQL Connection Failed: Can't connect to
local MySQL server through socket
'/var/lib/mysql/mysql.sock' (111) in
/var/www/html/namelist.php on line 7

Warning: Supplied argument is not a valid MySQL-Link
resource in /var/www/html/namelist.php on line 8

Warning: MySQL Connection Failed: Can't connect to
local MySQL server through socket
'/var/lib/mysql/mysql.sock' (111) in
/var/www/html/namelist.php on line 9

Warning: MySQL: A link to the server could not be
established in /var/www/html/namelist.php on line 9

Warning: Supplied argument is not a valid MySQL result
resource in /var/www/html/namelist.php on line 10
First Name: 

Warning: Supplied argument is not a valid MySQL result
resource in /var/www/html/namelist.php on line 11
Last Name: 

Can any one tell me why is it producing these errors.

TIA

__
Do You Yahoo!?
Get email alerts & NEW webcam video instant messaging with Yahoo! Messenger
http://im.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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




'localhost' problem

2001-09-10 Thread Crazy Linux

hello all,

i am running mysql on a red hat linux v7.0 box. when i
am trying to connect to the mysql database to read a
table that is present in the mysql database i am
facing a strange problem. i am able to get into the
database(named 'newone')  to read the table (named
'namelist') from the command line on the machine that
is running mysql in any of the following ways:
# mysql -u myname -p mypassword
# mysql -u myname -p mypassword -h localhost
# mysql -u myname -p mypassword -h mydomain.edu
All these 3 commands are successful, without returning
an error.
So i have created a php file named 'namelist.php' to
read this 'namelist' table, which reads like the
following:



Name List


Unable to connect to the database');
mysql_select_db ('newone') or die ('Unable to
connect to the database');
$result = mysql_query ("select * from namelist");
printf ("First Name: %s\n", mysql_result($result,
0, "firstname"));
printf ("Last Name: %s\n", mysql_result($result,
0, "lastname"));
?>



when i run this php script from the browser, it is
producing the following error:


Warning: MySQL Connection Failed: Can't connect to
local MySQL server through socket
'/var/lib/mysql/mysql.sock' (111) in
/var/www/html/namelist.php on line 7
Unable to connect to the database

But if change the 'localhost' to 'mydomain.edu' in
line 7 it shows the contents of the table on the
browser without any glitch. My question is eventhough
if it doesn't complain any thing from the command line
when i specify '-h localhost', why it returns the
above error when i run the script in a browser? i am
able to reach the index.html page from the browser by
typing any of the following, on the same machine:
127.0.01
localhost
mydomain.edu
138.xx.xx.xx  <--my ip address

Can any one please help me with this.

TIA

__
Do You Yahoo!?
Get email alerts & NEW webcam video instant messaging with Yahoo! Messenger
http://im.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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: 'localhost' problem

2001-09-10 Thread Crazy Linux

yes..the /etc/hosts file reads like the following:

127.0.0.1 localhost.localdomain  localhost
138.xx.xx.xx  mydomain.edu   mymachine

thanks

--- Lance Rochelle <[EMAIL PROTECTED]> wrote:
> is localhost setup correctly in /etc/hosts file?
> i.e. 127.0.0.1 localhost,
> if not put that in there and then try again
> 
> lance
> - Original Message -----
> From: "Crazy Linux" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Monday, September 10, 2001 2:53 PM
> Subject: 'localhost' problem
> 
> 
> > hello all,
> >
> > i am running mysql on a red hat linux v7.0 box.
> when i
> > am trying to connect to the mysql database to read
> a
> > table that is present in the mysql database i am
> > facing a strange problem. i am able to get into
> the
> > database(named 'newone')  to read the table (named
> > 'namelist') from the command line on the machine
> that
> > is running mysql in any of the following ways:
> > # mysql -u myname -p mypassword
> > # mysql -u myname -p mypassword -h localhost
> > # mysql -u myname -p mypassword -h mydomain.edu
> > All these 3 commands are successful, without
> returning
> > an error.
> > So i have created a php file named 'namelist.php'
> to
> > read this 'namelist' table, which reads like the
> > following:
> >
> > 
> > 
> > Name List
> > 
> > 
> >  > mysql_connect ('localhost','myname','mypassword')
> or
> > die ('Unable to connect to the database');
> > mysql_select_db ('newone') or die ('Unable to
> > connect to the database');
> > $result = mysql_query ("select * from namelist");
> > printf ("First Name: %s\n",
> mysql_result($result,
> > 0, "firstname"));
> > printf ("Last Name: %s\n",
> mysql_result($result,
> > 0, "lastname"));
> > ?>
> > 
> > 
> >
> > when i run this php script from the browser, it is
> > producing the following error:
> >
> >
> > Warning: MySQL Connection Failed: Can't connect to
> > local MySQL server through socket
> > '/var/lib/mysql/mysql.sock' (111) in
> > /var/www/html/namelist.php on line 7
> > Unable to connect to the database
> >
> > But if change the 'localhost' to 'mydomain.edu' in
> > line 7 it shows the contents of the table on the
> > browser without any glitch. My question is
> eventhough
> > if it doesn't complain any thing from the command
> line
> > when i specify '-h localhost', why it returns the
> > above error when i run the script in a browser? i
> am
> > able to reach the index.html page from the browser
> by
> > typing any of the following, on the same machine:
> > 127.0.01
> > localhost
> > mydomain.edu
> > 138.xx.xx.xx  <--my ip address
> >
> > Can any one please help me with this.
> >
> > TIA
> >
> > __
> > Do You Yahoo!?
> > Get email alerts & NEW webcam video instant
> messaging with Yahoo!
> Messenger
> > http://im.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
> <[EMAIL PROTECTED]>
> > To unsubscribe, e-mail
>
<[EMAIL PROTECTED]>
> > Trouble unsubscribing? Try:
> http://lists.mysql.com/php/unsubscribe.php
> >
> >
> 


__
Do You Yahoo!?
Get email alerts & NEW webcam video instant messaging with Yahoo! Messenger
http://im.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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




RE: Help! How to use dBase with mySQL?

2001-05-30 Thread Brooklyn Linux Solutions

Export the database and then autoload it into MYSQL
On 2001.05.28 21:00:46 -0400 Cal Evans wrote:
> No, MySQL will not read dBase files.
> 
> I can think of 3 ways to do it off the top of my head.
> 
> 1: Use Visual FoxPro. It will read dBase files and you can use the DBC to
> open a connection to a MySQL database through an ODBC connection. (Been
> there, done that)
> 
> 2: Use a dialect of *Base to create an insert.sql file that has 1 insert
> for
> each record in your dBase table. Then just use :
> 
> mysql < import.sql
> 
> to get it into your database. (I'm over simplifying but not much)
> 
> 3: Use PHP. It can (supposedly) read dbase files and MySQL files.  Suck
> it
> out of one and push it into another. (Never done this but it sounds like
> it
> could work if everything is configured properly.
> 
> If I were you, I'd use #2, it's the easiest.
> 
> Cal
> http://www.calevans.com
> 
> 
> -Original Message-
> From: Pat Suwalski [mailto:[EMAIL PROTECTED]]
> Sent: Monday, May 28, 2001 7:25 PM
> To: [EMAIL PROTECTED]
> Subject: Help! How to use dBase with mySQL?
> 
> 
> I'm doing a school project for which I'm to write a PHP script with MySQL
> that searches a dBase database.
> 
> I've got my code planned out, but the problem right now seems to be that
> mySQL can't directly read dBase databases.
> 
> It's a fairly large database (9 megs), and so I ask: do I need to convert
> it
> somehow or can I just read it directly?
> 
> Thanks for any assistance you could spare.
> --Pat
> 
> 
> -
> 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 <[EMAIL PROTECTED]>
> To unsubscribe, e-mail <[EMAIL PROTECTED]>
> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
> 
> 
> 
> -
> 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 <[EMAIL PROTECTED]>
> To unsubscribe, e-mail <[EMAIL PROTECTED]>
> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
> 

-- 
Brooklyn Linux Solutions
http://www.mrbrklyn.com
http://www.brooklynonline.com

1-718-382-5752

-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




mysql DBI install problem

2001-06-07 Thread Brooklyn Linux Solutions

I have a slackware box with Apache Perl 5.6, DBI and mod_perl.  I can't get
the MYSQL DBI module to install.  It's dieing on this line.

I'm very perplexed.

Ruben

umask -a
Linux vidor 2.2.13 #127 Thu Oct 21 13:13:20 CDT 1999 i686 unknown



make[1]: Entering directory `/root/.cpan/build/Msql-Mysql-modules-1.1835/Mysql'
cc -c -I/usr/local/lib/perl5/site_perl/5.6.1/i686-linux/auto/DBI
-I/usr/local/include/mysql -I../dbd  
-I/usr/local/lib/perl5/site_perl/5.6.1/i686-linux/auto/DBI
-I/usr/local/lib/perl5/5.6.1/i686-linux -fno-strict-aliasing
-I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O2  
-DVERSION=\"1.1835\" -DXS_VERSION=\"1.1835\" -fpic
-I/usr/local/lib/perl5/5.6.1/i686-linux/CORE -DDBD_MYSQL

Mysql.xs: In function `XS_Mysql_listdbs':
Mysql.xs:945: `sv_undef' undeclared (first use in this function)
Mysql.xs:949: `dowarn' undeclared (first use in this function)
Mysql.xs: In function `XS_Mysql_listtables':
Mysql.xs:970: `sv_undef' undeclared (first use in this function)
Mysql.xs:974: `dowarn' undeclared (first use in this function)
Mysql.xs: In function `XS_Mysql_listfields':
Mysql.xs:1005: `dowarn' undeclared (first use in this function)
make[1]: *** [Mysql.o] Error 1
make[1]: Leaving directory `/root/.cpan/build/Msql-Mysql-modules-1.1835/Mysql'
make: *** [subdirs] Error 2

-- 
Brooklyn Linux Solutions
http://www.mrbrklyn.com
http://www.brooklynonline.com

1-718-382-5752

-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Mysql DBI install problem

2001-06-11 Thread Brooklyn Linux Solutions

I have a slackware box with Apache Perl 5.6, DBI and mod_perl.  I can't get
the MYSQL DBI module to install.  It's dieing on this line.

I'm very perplexed.

Ruben

umask -a
Linux vidor 2.2.13 #127 Thu Oct 21 13:13:20 CDT 1999 i686 unknown



make[1]: Entering directory `/root/.cpan/build/Msql-Mysql-modules-1.1835/Mysql'
cc -c -I/usr/local/lib/perl5/site_perl/5.6.1/i686-linux/auto/DBI
-I/usr/local/include/mysql -I../dbd  
-I/usr/local/lib/perl5/site_perl/5.6.1/i686-linux/auto/DBI
-I/usr/local/lib/perl5/5.6.1/i686-linux -fno-strict-aliasing
-I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O2  
-DVERSION=\"1.1835\" -DXS_VERSION=\"1.1835\" -fpic
-I/usr/local/lib/perl5/5.6.1/i686-linux/CORE -DDBD_MYSQL

Mysql.xs: In function `XS_Mysql_listdbs':
Mysql.xs:945: `sv_undef' undeclared (first use in this function)
Mysql.xs:949: `dowarn' undeclared (first use in this function)
Mysql.xs: In function `XS_Mysql_listtables':
Mysql.xs:970: `sv_undef' undeclared (first use in this function)
Mysql.xs:974: `dowarn' undeclared (first use in this function)
Mysql.xs: In function `XS_Mysql_listfields':
Mysql.xs:1005: `dowarn' undeclared (first use in this function)
make[1]: *** [Mysql.o] Error 1
make[1]: Leaving directory `/root/.cpan/build/Msql-Mysql-modules-1.1835/Mysql'
make: *** [subdirs] Error 2

-- 
Brooklyn Linux Solutions
http://www.mrbrklyn.com
http://www.brooklynonline.com

1-718-382-5752

-- 
Brooklyn Linux Solutions
http://www.mrbrklyn.com
http://www.brooklynonline.com

1-718-382-5752

-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Mysql DBI install problem

2001-06-11 Thread Brooklyn Linux Solutions

Yes

That was the trouble.

Thanks

I just upgraded the entire thing while I was at it,
perl 5.6, DBI, mod_perl, embperl



Thank you very much.  I thought I did get the latest version.  Maybe I go a
pre-release version.

Ruben



On 2001.06.11 11:06:01 -0400 Dave FitzPatrick wrote:
Ruben,

I ran into the same thing on a Compaq Tru64 box last week.  Version 
1.1835 of the Msql-Mysql-modules is WAY out of date.  For some reason 
it is still listed in the CPAN database if you try to install 
Bundle::Mysql or Bundle::Msql.

Try again by:

cpan> install J/JW/JWIED/Msql-Mysql-modules-1.2216.tar.gz

This way you will be sure to get the correct version.

Hope this helps,
D=

On 11 Jun 2001, at 8:09, Brooklyn Linux Solutions <[EMAIL PROTECTED]>
wrote:

> I have a slackware box with Apache Perl 5.6, DBI and mod_perl.  I can't
get
> the MYSQL DBI module to install.  It's dieing on this line.
> 
> I'm very perplexed.
> 
> Ruben
> 
> umask -a
> Linux vidor 2.2.13 #127 Thu Oct 21 13:13:20 CDT 1999 i686 unknown
> 
> 
> 
> make[1]: Entering directory `/root/.cpan/build/Msql-Mysql-modules-1.1835/Mysql'
> cc -c -I/usr/local/lib/perl5/site_perl/5.6.1/i686-linux/auto/DBI
> -I/usr/local/include/mysql -I../dbd 
-I/usr/local/lib/perl5/site_perl/5.6.1/i686-linux/auto/DBI
> -I/usr/local/lib/perl5/5.6.1/i686-linux -fno-strict-aliasing
> -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O2  
> -DVERSION=\"1.1835\" -DXS_VERSION=\"1.1835\" -fpic
> -I/usr/local/lib/perl5/5.6.1/i686-linux/CORE -DDBD_MYSQL
> 
> Mysql.xs: In function `XS_Mysql_listdbs':
> Mysql.xs:945: `sv_undef' undeclared (first use in this function)
> Mysql.xs:949: `dowarn' undeclared (first use in this function)
> Mysql.xs: In function `XS_Mysql_listtables':
> Mysql.xs:970: `sv_undef' undeclared (first use in this function)
> Mysql.xs:974: `dowarn' undeclared (first use in this function)
> Mysql.xs: In function `XS_Mysql_listfields':
> Mysql.xs:1005: `dowarn' undeclared (first use in this function)
> make[1]: *** [Mysql.o] Error 1
> make[1]: Leaving directory `/root/.cpan/build/Msql-Mysql-modules-1.1835/Mysql'
> make: *** [subdirs] Error 2
> 
> -- 
> Brooklyn Linux Solutions
> http://www.mrbrklyn.com
> http://www.brooklynonline.com
> 
> 1-718-382-5752
> 
> -- 
> Brooklyn Linux Solutions
> http://www.mrbrklyn.com
> http://www.brooklynonline.com
> 
> 1-718-382-5752
> 
> -
> 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 <[EMAIL PROTECTED]>
> To unsubscribe, e-mail <[EMAIL PROTECTED]>
> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
> 
> 


-- 
 Dave FitzPatrick   [EMAIL PROTECTED]
 Webmaster  978-681-1599
 Quantic Communications An MHI Company  http://www.quantic.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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php


-- 
Brooklyn Linux Solutions
http://www.mrbrklyn.com
http://www.brooklynonline.com

1-718-382-5752

-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: mysql.org

2001-07-13 Thread Brooklyn Linux Solutions CEO

The greatest asset to using the MYSQL product over the years has been
this mailing list and Monty's personal efforts to answer almost every 
question, no matter how stupid or repetitive, patiently and accurately.

It's blown my mind to see him working so hard on handling the enormous
communications on this list.  He alone has given more technical support,
provided more training, and is responsible for more enlightenment than
the entire Tech Support hotline of MicroSoft.

All that work is essentially values in the good name MYSQL provides
for the code base.

Nusphere, IMO, in this matter, is a theif, in addition to clearly
violating the GPL under a ridicules pretense.

Monty Widus, even GPL Czar... are you out of your mind


Give me a break.

When NuShpere was in NYC for the last Linux expo, they gave a presentation
on Gemini.  They clearly indicated that they are hacking at the MYSQL code 
base.  They said NOTHING about making these estenssions propiatory only,
and insisted that they planned on a server oriented business model through
support.

This action by them is a 100% turn around.

SHAME SHAME SHAME on youi, NuSphere,  for burning up valuable
and scarce economic resources on legal mumbo jumbo NuSphere 
has ZERO chance on winning.  And if they did win, the entire 
Free Software movemnt would undermined.


Ruben


> I would like to whole heartedly add my support to this statement, I feel
> that Gerry has summed up perfectly everything I would like to say. We have
> been using MySQL for well over a year now and have found it to be a fast,
> reliable, efficient and scalable product. I happily recommend the use of it
> to colleagues and use it in my corporate work and when advising charities.
> The efforts of the developers shine through in the excellent performance of
> this product. It is sad to see people taking advantage of their efforts and
> I feel that MySQL AB has not in any way besmirched the principles of open
> source by taking the actions they have taken. 
> 
> best wishes and keep up the wonderful work, you are much appreciated
> 
> Chris
> 
> Dr Christopher Thorpe
> Information Architect
> 
> GenomeBiology.com
> 
> Middlesex House
> 34-42, Cleveland Street
> London
> W1P 6LB
> 
> T 0207 631 9184
> Whttp://genomebiology.com/
> 
> 
> -Original Message-
> From: Gerry Sweeney [mailto:[EMAIL PROTECTED]]
> Sent: Friday, July 13, 2001 7:15 AM
> To: '[EMAIL PROTECTED]'
> Cc: '[EMAIL PROTECTED]'; '[EMAIL PROTECTED]'; [EMAIL PROTECTED];
> [EMAIL PROTECTED]
> Subject: RE: mysql.org
> 
> 
> Monty and all at MySQL,
> 
> I am sorry to hear about this most unfortunate situation. It is sad to see
> that NuSphere have taken it upon themselves to attempt to steal your
> intellectual property and try to benefit from all of the MySQL team's 
> hard work. My company has been licensing using MySQL for development of
> our products for the past 18 months or so and I have had nothing but good 
> things to say about MySQL. You are a credit to the open source community 
> and I believe you have found the perfect balance with MySQL for both
> open source and commercial users. 
> 
> Your comments that you totally rely on the trust of your users is admirable 
> and very much appreciated by many people I am sure. However, being the human
> race, there are always people that are going to take liberties and abuse
> such trust. I hope that your legal defence is swift and successful and
> does not cause too much disruption to your day to day business.
> 
> As far as I am concerned, if NuSphere are selling a product derived from 
> MySQL, then they should be paying MySQL.com a license fee to ensure that
> the professionals that are responsible for the creation of MySQL can 
> continue to develop MySQL. 
> 
> We *embed* MySQL into our products and pay commercial license fees for the
> use of MySQL. Having dealt with MySQL at a commercial level, I can honestly
> say that, there is absolutely no excuse for what NuSphere have done. Your
> licensing policies have been totally fair, non-restrictive and realistic.
> 
> Needless to say, You have our full support and rest assured I, or anyone
> who works at my company will not have anything to do with either mysql.org
> or NuSphere now or in the future. 
> 
> Kind Regards
> 
> 
> 
> Gerry Sweeney
> Hornbill Systems Limited
> 
> 
> -
> 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 <[EMAIL PROTECTED]>
> To unsubscribe, e-mail
> <[EMAIL PRO

Re: Re: mysql.org

2001-07-13 Thread Brooklyn Linux Solutions CEO

 database,sql,query,table
 
 

 > 
 > Now most of us in/using Open Source probably do not _really_
 > understand the meaning and ramifications of the GPL.  We _think_
 > we know, and we certainly have a "feeling" about what the GPL
 > "means". 
 
 Oh Bull
 
 Making a derived work from a GPL product and not releasing it under the
 GPL is the very definition of a GPL violation,
 
 
 
 >Ironically, Richard Stallman's take is, in a legal sense,
 > crystal clear compared with the GPL.  NuSphere indicated that
 > is was going to put their products under the GPL.  They have
 > indicated that Gemini will be GPL's.  Are they to be punished
 > for "being late" in doing so? 
 
 Yes
 
They are releasing the produce for sale and it MUST be imediately
 released under the GPL.
 
 Read the licence.
 
 
 >NuSphere supports Open Source
 > and is public on this position.
 >
 
 Not that I see so far.
 
 > The irony of this situation is that it _may_ be to the advantage
 > of the Open Source community if NuSphere is not knee-jerked
 > pilloried, and tarred and feathered out of the minds of the
 > Open Source community.  
 
 
 Their in violation and sued out of existence.
 
 
 


-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: mysql.org

2001-07-19 Thread Brooklyn Linux Solutions CEO

> the same time, a NuSphere-controlled mysql.org doesn't strike me 
> as a disaster, provided they can do it with out shooting 
> themselves in the foot, as they are doing now.
> 


Nah

There using it as a marketing ploy to dup the public.

The should have released their GPLed extentions on 
NuShpere.com rather than maysql.org, but they are
unwilling to do this because they feel they have the
right to be seen as the originators of MYSQL.


Ruben

-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: mysql.org

2001-07-19 Thread Brooklyn Linux Solutions CEO

Fact

MYSQL owns their trademark

Fact, what NuShpere brought form MYSQL is irrelevant as loing as they
are infrringing on the MYSQL Trademark...and they were going to do WORSE
until the public heat.

Until they apologies fo the GPL violation, and then the Trademark 
infringment, they are pound scum

and deserve no support attention, or benifit of any doubt.


Ruben
> > > 
> > > I think you see evil people, conspiracies and other unwanted stuff 
> > > when in fact there are only misunderstandings and opposing 
> > viewpoints.
> > > 
> > > I'm with Bob Hall on this one. Excellent statement Bob!
> > > 
> > > -S
> > > 
> > > 
> > Their is no conpsirisy, there is only one company trying to 
> > steel the good name of another company through immoral (and 
> > illegal) activities.
> > 
> > Nusphere has no justffication, defense or right to take a product 
> > and push it on the public through the use of some elses 
> > trusted trademark...
> 
> It's not. There was an agreement. Nusphere paid money for that
> agreement. 
> MySQL sold SOMETHING to them, that much is clear. Have you seen the
> agreement?
> Do you have 100% proof that MySQL did not sell the right to use their
> (yet to be approved)
> trademark!? Temporary or otherwise? What makes you think this is not a
> case of Swedish and 
> American laws and/or cultures clashing? 
> 
> I do not think you have seen the agreement, and I do not think you have
> enough information to make a 
> sound and unbiased judgement in this matter. You have a right to your
> own opinion, ofcourse, as long as you 
> realize that they are just that - opinions. Not facts. 
> 
> Regards,
> 
> -S
> 


-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




mysql.org

2001-07-19 Thread Brooklyn Linux Solutions CEO

 
>You are, of course, welcome to your opinion, and to the expression of said
>opinion.  You are also liable to be judged on the basis of that expression, and
> frankly, your expression leaves me wondering about your wisdom and your
>analytical capabilities, not to mention your social skills.
 

What - you work for NuShpere.  My analysis of this affair is correct.

It comes down to trust
   I TRUST MONTY.
I do not trust Brit, and man who has abused the GPL, abused the MYSQL
trademark, and broke the trust between the two partners.


What do I base that trust on
6 years of contant communication and dependency of the MYSQL
staff and my PERSONAL relationship with Monty and his Fella's
as he called them.

Furthmore, the assumption that under any condition NuSphere BROUGHT the right
to open up shop directly under the MYSQL name and conduct independent sales,
promotion and business, is damn off the wall, far fetched, and ridicules to 
asume, that you'd have to be a complete utter moron to beleive this report,
and in addition, the report should be playing tomorrow afternoon on the 
Opra show, and be reported right next to the alien abduction story in the
National Enquirer.

Furthermore, their behavior secondary to this, and the proposition that they 
opened the mysql.org site as a "Community" site flies right in the face
of the proposition forwarded by NuShpere that they opened the site with full
rights to do so under previous agreements because they purchased control
over the MYSQL trademark because they did in secret, then protested they had
they right ot, after saying it was a communitee site, and then finally, they
release they're Gemini code on it, only after 100's of people complained that
they were violating the  GPL.

This is NOT the actions of an honest person...period...



No

We need NuSphere to admit their wrongs, make a blanket apology, and
everyone can call a no harm no foul, and forget it happened.


Ruben

----- End of forwarded message from Brooklyn Linux Solutions CEO -

-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: Re: mysql.org

2001-07-19 Thread Brooklyn Linux Solutions CEO

 
 > 
 > I think you see evil people, conspiracies and other unwanted stuff when
 > in fact there are only misunderstandings and opposing viewpoints.
 > 
 > I'm with Bob Hall on this one. Excellent statement Bob!
 > 
 > -S
 > 
 > 
 Their is no conpsirisy, there is only one company trying to
 steel the good name of another company through immoral (and illegal)
 activities.
 
 Nusphere has no justffication, defense or right to take a product 
 and push it on the public through the use of some elses trusted
 trademark...
 
 
 It really is that simple.
 
 Ruben
 

 database,sql,query,table

-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: mysql.org

2001-07-19 Thread Brooklyn Linux Solutions CEO

> 
> MYSQL.NET 
> XMYSQL.COM
> MYSQLPHP.COM 
> PHPMYSQL.COM 
> MYSQL-PHP.COM 
> MYSQLHOST.COM 
> 
> -S
> 
>

Aside from being incorrect about the process of tradmarking in the 
US and the ability to defend a trademark while awaiting registry,
all these above websites are not claiming to be the official
place to download and collaberate on MYSQL.

Only mmysql.org is promoting itself as THE place to download
the database program.


Ruben

-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: mysql.org

2001-07-21 Thread Brooklyn Linux Solutions CEO

Too bad it's not your list to make that decision, but 
Monteys


Ruben
mysql - the database written and owned by MYSQL AB
> On Sat, Jul 21, 2001 at 01:13:15PM +0100, Mark Tiramani wrote:
> > 
> > > Since these issues are between two private companies, please take
> > > your discussions off this list. It is none of our business. By
> > > all means, tell us the result.
> > 
> > This discussion most certainly is our business.
> 
> No it's not. MySQL is owned by MySQL AB. The fact that you
> get to use their code under GPL has no bearing on their
> commercial discussions. All these posts to this list only
> serve to inflame the situation.
> 
> -- 
> John Birrell - [EMAIL PROTECTED]; [EMAIL PROTECTED]
> 
> -
> 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 <[EMAIL PROTECTED]>
> To unsubscribe, e-mail <[EMAIL PROTECTED]>
> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
> 


-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Re: MySQL License

2001-03-06 Thread Brooklyn Linux Solutions CEO

You can charge for any GPL'ed product you wish too.

Ruben

On 2001.03.05 22:31:41 -0500 Jeff Platzer wrote:
> Maybe someone can help me out with MySQL's commercial license.
> 
> If MySQL server has a GPL license and MySQL client libraries have LGPL
> licenses, how can a paid commercial license be required for products that
> incorporate LGPL MySQL client libraries and depend on the GPL MySQL
> server?  Does this not violate the GPL and LGPL license terms?  
> 
> MySQL commercial applications should be similar to Linux commercial
> applications that use the LGPL Linux shared libraries and depend on the
> GPL Linux OS.  No Linux paid license can be required in this case. 
> However, the developer can charge for the commercial application in this
> case.
> 

-- 
Brooklyn Linux Solutions
http://www.mrbrklyn.com
http://www.brooklynonline.com

1-718-382-5752

-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




NuSphere

2001-02-04 Thread Ruben I Safir - Brooklyn Linux Solutions CEO


What exactly is now the relationship between NuShpere and MYSQL/TSX.  Who is
working on the Gemini COde and the documentation?

Ruben

-- 
Brooklyn Linux Solutions
http://www.mrbrklyn.com
http://www.brooklynonline.com

1-718-382-5752


-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php




Persistant Connection

2001-02-09 Thread Ruben I Safir - Brooklyn Linux Solutions CEO

Good Morning:

We have a system of databases (in the plural) which number in the hundreds
on individual servers.  I want to open a persistant connection on the server
and switch databases without closing the handle in DBI and reopening it.

Is this possible without getting a rollback warning using DBI?

Ruben



-- 
Brooklyn Linux Solutions
http://www.mrbrklyn.com
http://www.brooklynonline.com

1-718-382-5752


-
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 <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php