Re: Hello how to connect MySQL with Visual Foxpro

2006-05-22 Thread Ehrwin Mina
Hi Venu, I would like to know the OS your using (for mysql server), BTW if your using window. Try installing the myodbc and configure it so that vfoxpro can communicate with it. check this site: http://fox.wikis.com/wc.dll?Wiki~VFPCommandSQLStringConnect~VFP At 06:28 PM 5/22/2006, VenuGop

Hello how to connect MySQL with Visual Foxpro

2006-05-22 Thread VenuGopal Papasani
Hi all, I have got a database in mysql and i need to use the gis and that was in VFOXPRO.I need to display my data which is mysql on the map which database is in VFoXPRO.Is there any way to have communication betweeen these two DBs. Thanks and regards, venu.

Re: unable to connect mysql and jsp

2004-08-05 Thread Jonathan Mangin
If you've installed the jar in $JAVA_HOME/lib/ext it shouldn't need to be referenced in $CLASSPATH. - Original Message - From: "Mahesh S" <[EMAIL PROTECTED]> To: "my sql" <[EMAIL PROTECTED]> Sent: Thursday, August 05, 2004 1:36 AM Subject:

unable to connect mysql and jsp

2004-08-04 Thread Mahesh S
hi all, i'm using RH linux 9 and MySQL(3.23.54a-11) that comes with the distro. i have installed the latest jdbc driver (mysql-connector-java-3.0.14-production-bin.jar from the msql site) for mysql and also have set the CLASSPATH correctly. despite this, t he jsp application i'm running is giv

Re: Help:how can i connect mysql server with the server's IP but not localhost?

2004-04-02 Thread Peter
Hi, You are using sockets to connect to localhost but tcp/ip for the network interface. Check in my ini NOT to have skip-networking BIVOL - Original Message - From: wen heping To: [EMAIL PROTECTED] Sent: Saturday, April 03, 2004 4:19 AM Subject: Help:how can i connect mysql server with

Help:how can i connect mysql server with the server's IP but not localhost?

2004-04-02 Thread wen heping
Hi: Now i can use command: mysql -h localhost -u root -p connect to mysql server. But when i use command: mysql -h 127.0.0.1 -u root -p or: mysql -h 10.0.0.1 -u root -p (10.0.0.1 is the IP of mysql server) i failed,why? and how can do ? Thanks. __ Do you Yahoo!

Re: PHP script cannot connect MySQL server

2004-03-23 Thread beacker
Sami Maisniemi <[EMAIL PROTECTED]> writes: > >It seems that the correct socket is used. Here is the output: > > > >unix 2 [ ACC ] STREAM LISTENING 3303 private/relay > >unix 2 [ ACC ] STREAM LISTENING 3307 public/showq ... >I tried to connect to socket #3307

Re: PHP script cannot connect MySQL server

2004-03-23 Thread jeffrey_n_Dyke
n Tuesday 23 March 2004 02:15, [EMAIL PROTECTED] wrote: > >> tcp0 0 *:3307 *:* > >> LISTEN > > > >It seems that the correct socket is used. Here is the output: > > > >unix 2 [ ACC ] STREAM LISTENING 3303 private/relay > >unix 2 [ ACC ] S

Re: PHP script cannot connect MySQL server

2004-03-23 Thread Sami Maisniemi
On Tuesday 23 March 2004 02:15, [EMAIL PROTECTED] wrote: > >> tcp0 0 *:3307 *:* > >> LISTEN > > > >It seems that the correct socket is used. Here is the output: > > > >unix 2 [ ACC ] STREAM LISTENING 3303 private/relay > >unix 2

Re: PHP script cannot connect MySQL server

2004-03-22 Thread beacker
Sami Maisniemi <[EMAIL PROTECTED]> writes: >> mysql> use mysql >> mysql> select User,Host,Password,Select_priv from user; >> >> which will show basic access capabilities for user/host/password > >Hmmm ... did not work as you can see: > >mysql> select User,Host,Password,Select_priv from user; >ERROR

Re: PHP script cannot connect MySQL server

2004-03-22 Thread beacker
>> tcp0 0 *:3307 *:* LISTEN > >It seems that the correct socket is used. Here is the output: > >unix 2 [ ACC ] STREAM LISTENING 3303 private/relay >unix 2 [ ACC ] STREAM LISTENING 3307 public/showq Looks

Re: PHP script cannot connect MySQL server

2004-03-22 Thread Sami Maisniemi
On Monday 22 March 2004 22:43, [EMAIL PROTECTED] wrote: > >specify how to check the socket, please? > > Based on your ps information, the socket will likely be in the > /usr/local/mysql/data/my.cnf file under the [mysqld] area. Another way > to tell if there is a socket open for the server would b

Re: PHP script cannot connect MySQL server

2004-03-22 Thread beacker
Sami Maisniemi writes: >I think I am using root access, but should I create another user name for >MySQL? On the command line, I start MySQL by typing just 'MySQL'. How can I >view the user? from the mysql program: mysql> use mysql mysql> select User,Host,Password,Select_priv from user; which

Re: PHP script cannot connect MySQL server

2004-03-22 Thread beacker
>It seems that mysqld is up and running (view the results below), but could you >specify how to check the socket, please? Based on your ps information, the socket will likely be in the /usr/local/mysql/data/my.cnf file under the [mysqld] area. Another way to tell if there is a socket open for th

Re: PHP script cannot connect MySQL server

2004-03-22 Thread B. van Ouwerkerk
At 22:00 22-03-2004 +0200, Sami Maisniemi wrote: > Did you provide access to the databases as root? Is there a password > associated with access? For instance, how do you statr mysql from the > command line: mysql -u root -ppassword mydatabase I think I am using root access, but should I create

Re: PHP script cannot connect MySQL server

2004-03-22 Thread Sami Maisniemi
> Did you provide access to the databases as root? Is there a password > associated with access? For instance, how do you statr mysql from the > command line: mysql -u root -ppassword mydatabase I think I am using root access, but should I create another user name for MySQL? On the command lin

Re: PHP script cannot connect MySQL server

2004-03-22 Thread Sami Maisniemi
On Monday 22 March 2004 21:45, [EMAIL PROTECTED] wrote: > This error could result from a number of possible problems. First off I > would check to make sure the mysqld is running and attaching to the default > socket (3306). If you have it set up otherwise, you will likely need the > connect to c

Re: PHP script cannot connect MySQL server

2004-03-22 Thread Sami Maisniemi
On Monday 22 March 2004 20:36, [EMAIL PROTECTED] wrote: > This means that your server is not up, most likely. Can you connect from > the command line? try running > ps -efc | grep mys > > do you see an entry for mysqld? It seems that the server is up and running, because I am able to see mu

Re: PHP script cannot connect MySQL server

2004-03-22 Thread beacker
>I finally managed to install MySQL succesfully. I created a simple DB with two >different tables. I also created a simple PHP script to list all DBs and >tables. > >However, it seems that the PHP script cannot access MySQL server, because the >following error message is displayed: > >Warning: m

Re: PHP script cannot connect MySQL server

2004-03-22 Thread jeffrey_n_Dyke
I finally managed to install MySQL succesfully. I created a simple DB with two different tables. I also created a simple PHP script to list all DBs and tables. However, it seems that the PHP script cannot access MySQL server, because the following error message is displayed: _ This

Re: PHP script cannot connect MySQL server

2004-03-22 Thread Rick Emery
mydatabase rick "People will forget what you said. People will forget what you did. But people will never forget how you made them feel." - Original Message - From: "Sami Maisniemi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 22, 2004 12:25 PM Su

PHP script cannot connect MySQL server

2004-03-22 Thread Sami Maisniemi
I finally managed to install MySQL succesfully. I created a simple DB with two different tables. I also created a simple PHP script to list all DBs and tables. However, it seems that the PHP script cannot access MySQL server, because the following error message is displayed: Warning: mysql_con

Connect mySQL

2003-09-30 Thread ketvin
Hi geniuses, i have 2 server A & B both have mysql running, is there anyway if i want to use web application on A and connect mysql on B. I think i need some code example, thanks - Original Message - From: "Egor Egorov" <[EMAIL PROTECTED]> To: <[EMAIL PR

Need help to connect MySQL which is on Linux thru win32 PC

2002-11-28 Thread Cem Yagli
Keys: sql, query Hi Steve, I got your email from the MYSQL list, and I undertood that you have some experience about using Mysql tables in an application developed by Delphi. I am just at the begining of the way. Still I am dying to get any response or see the already existing defined tables of

re: Have a problem when I try to connect MySQL( on Linux) thru win32

2002-11-26 Thread Egor Egorov
Cem, Tuesday, November 26, 2002, 1:13:45 PM, you wrote: CY> I have a problem with MySQL ver 3.23.52 on Linux Redhat 8. It is CY> working successfully on the server, and can response all request CY> comming on Server. But, when I try to connect to the database thru CY> any client running on a Windo

Have a problem when I try to connect MySQL( on Linux) thru win32

2002-11-26 Thread Cem Yagli
He all, I have a problem with MySQL ver 3.23.52 on Linux Redhat 8. It is working successfully on the server, and can response all request comming on Server. But, when I try to connect to the database thru any client running on a Windows 2000 (like MySQLAdmin), I can't connect it. Firstly, I got

Have a problem when I try to connect MySQL( on Linux) thru win32

2002-11-25 Thread Cem Yagli
He all, I have a problem with MySQL ver 3.23.52 on Linux Redhat 8. It is working successfully on the server, and can response all request comming on Server. But, when I try to connect to the database thru any client running on a Windows 2000 (like MySQLAdmin), I can't connect it. Firstly, I got

How to connect MYSQL without X-Windows

2002-10-23 Thread Liu Qianghua-qch1942
All, I wan to create daemon with Kylix and want to connect to MYSQL through ODBC. But daemon can't run on X-Windows, how do I connect to Mysql without X-Windows. Thanks a lot. Best Regards, Q.H. Liu - Before posting, pleas

Connect Mysql on Linux from Windows

2002-03-25 Thread Egor Egorov
Dodol, Monday, March 25, 2002, 3:50:25 AM, you wrote: D> I am new member here, and I would like to ask about connection at D> Mysql. I have MySQL on linux server and I want to connect that MySQL D> engine from windows, how can I connect to that mysql D> now I've been install Mysql-ODBC and MySQLF

Connect Mysql on Linux from Windows

2002-03-24 Thread Dodol
Dear Miliser I am new member here, and I would like to ask about connection at Mysql. I have MySQL on linux server and I want to connect that MySQL engine from windows, how can I connect to that mysql now I've been install Mysql-ODBC and MySQLFront on windows, but there is still an error connecti

Re: A sure "way" to start/connect mysql under Linux

2002-03-07 Thread Shankar Unni
Gelu wrote: > 3.Go to in /etc/init.d and make 2(two) symbolic link from mysqld script to > ... > - "K12mysqld" - OS kill the daemon when shutdown. > - "S12mysqld" - OS start the daemon on boot. > ...in rc3.d directory (if your OS boot on text mode) or rc5.d directory (if > your OS boot wi

A sure "way" to start/connect mysql under Linux

2002-03-07 Thread Gelu
Hi Suppose we have the binary distribution already installed. 1. run mysq_install_db "script" 2. run mysql_setpermission 3.Go to in /etc/init.d and make 2(two) symbolic link from mysqld script to ... - "K12mysqld" - OS kill the daemon when shutdown. - "S12mysqld" - OS start the daemon on

Re: C programming to connect mysql

2002-01-04 Thread Gerald Clark
The manual and the sources for the clients are a good place to start. Kaming wrote: > Hi all, > > Do anyone know that how to write a C programming to connect to mysql?? > Many thanks. > > Kaming. > > > > > > - > Before po

C programming to connect mysql

2002-01-03 Thread Kaming
Hi all, Do anyone know that how to write a C programming to connect to mysql?? Many thanks. Kaming. - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the

Ynt: connect mysql to java and/or asp

2001-07-18 Thread Yusuf Incekara
For mysql and asp : check http://www.avukatpro.com/mysql.html - Original Message - From: Hasan <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 18, 2001 12:40 PM Subject: connect mysql to java and/or asp > anyone can give me a scoop on how to connec

connect mysql to java and/or asp

2001-07-18 Thread Hasan
anyone can give me a scoop on how to connect mysql to java and/or asp? thanks - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request

Re: How to connect mysql server (on unix) by using win2000??

2001-07-12 Thread Gerald Clark
lark" <[EMAIL PROTECTED]> > To: "zosen" <[EMAIL PROTECTED]> > Cc: <[EMAIL PROTECTED]> > Sent: Thursday, July 12, 2001 1:24 AM > Subject: Re: How to connect mysql server (on unix) by using win2000?? > > > >> >> zosen wrote: >> &g

Re: How to connect mysql server (on unix) by using win2000??

2001-07-11 Thread Michael Tam
zosen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, July 11, 2001 6:22 PM Subject: Re: How to connect mysql server (on unix) by using win2000?? > > Hi!Gerald Clark > How does the web server support MySQL???What shall

Re: How to connect mysql server (on unix) by using win2000??

2001-07-11 Thread zosen
day, July 12, 2001 1:24 AM Subject: Re: How to connect mysql server (on unix) by using win2000?? > > > zosen wrote: > > > Hi!friend > >I use win2000 and IIS as web server.and I have a Freebsd mysql > > server.I want to connect the mysql server under the win200

Re: How to connect mysql server (on unix) by using win2000??

2001-07-11 Thread Gerald Clark
osen > Assuming your web server supports MySQL, you just have to specify the host to be the freebsd machine instead of localhost when you connect. MySQL must, of course, have granted privileges to the web server. -- Gerald L

How to connect mysql server (on unix) by using win2000??

2001-07-11 Thread zosen
Hi!friend I use win2000 and IIS as web server.and I have a Freebsd mysql server.I want to connect the mysql server under the win2000.What shall I do? and how the web page (in win200) can use the my mysql server(on freebsd)?? Thanks!! zosen ---

Ynt: How to connect Mysql with vb6 applications?

2001-07-02 Thread Yusuf Incekara
try this : Mysql & VB6 http://www.avukatpro.com/mysql.html - Original Message - From: Tiago Luchini <[EMAIL PROTECTED]> To: Gopal Saha <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, July 02, 2001 2:56 PM Subject: Re: How to connect Mysql with vb6 applicati

Re: How to connect Mysql with vb6 applications?

2001-07-02 Thread Tiago Luchini
lt;[EMAIL PROTECTED]> Date: Monday, July 02, 2001 7:45 AM Subject: How to connect Mysql with vb6 applications? Hi, I am a Vb programmer wants to connect with Mysql database please suggest me. I have download Mysql for windows95 . My mail address is [EMAIL PROTECTED] Tha

How to connect Mysql with vb6 applications?

2001-07-02 Thread Gopal Saha
Hi, I am a Vb programmer wants to connect with Mysql database please suggest me. I have download Mysql for windows95 . My mail address is [EMAIL PROTECTED] Thanks, Sougata

Re: Connect mySQL with HTML or something

2001-06-21 Thread trogers
yes. get MySQL/PHP Database Applications. by J. Greenspan and Brad Burger. enjoy. p.s. your hotmail email addy doesn't work. At 2:03 PM -0300 6/21/01, Laura Lía Marcello wrote: >I need to know if there is a way to create a searchable database that >returns results as a web page... >As you c

Re: Connect mySQL with HTML or something

2001-06-21 Thread John Meyer
On Thu, 21 Jun 2001, Laura La Marcello wrote: > I need to know if there is a way to create a searchable database that > returns results as a web page... > As you can see, I'm just begining, so I would really apreciate an answer, > even if it's short. > > Thanks! Yes, but the web page will more

Re: Connect mySQL with HTML or something

2001-06-21 Thread Tyler Longren
You'd probably be interested in PHP: www.php.net Tyler - Original Message - From: Laura Lía Marcello <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 21, 2001 12:03 PM Subject: Connect mySQL with HTML or something I need to know if there is a way to cr

Connect mySQL with HTML or something

2001-06-21 Thread Laura Lía Marcello
I need to know if there is a way to create a searchable database that returns results as a web page... As you can see, I'm just begining, so I would really apreciate an answer, even if it's short. Thanks! Laura Lía Marcello Web Development

Re: connect MYSQL via java

2001-06-08 Thread Siomara Pantarotto
I got it working Thanks anyway Siomara >From: "Siomara Pantarotto" <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Subject: connect MYSQL via java >Date: Fri, 08 Jun 2001 14:31:26 -0300 > >Hi all , > >I got a critical situation to solve and I wonder if yo

connect MYSQL via java

2001-06-08 Thread Siomara Pantarotto
Hi all , I got a critical situation to solve and I wonder if you can help me on that. I promise to be very specific on my questions once I know what need to be done, except that instead of Oracle I got to connect mySQL via java. The first questions are: 1) Do I need to download a driver

FW: Can't connect mysql in Turbolinux workstation.Err 1130.

2001-05-30 Thread Thompson, Mike
I have forwarded this to list. For some reason 'zhenlei' sent it directly to me. -Original Message- From: zhenlei [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 29, 2001 9:51 PM To: [EMAIL PROTECTED] Subject: Can't connect mysql in Turbolinux workstation.Err 1130

Re: Can't connect mysql in Turbolinux workstation.Err 1130.

2001-05-29 Thread Paul DuBois
At 9:50 AM +0800 5/30/01, zhenlei wrote: >?Hi,I meet a problem.I install mysql in Turbolinux workstation >6.1,it works seem ok.But when I connect it in another computer(using >mysql client,odbc ect.),Err occured seem "the host '' not allow >connect mysql...&quo

Can't connect mysql in Turbolinux workstation.Err 1130.

2001-05-29 Thread zhenlei
Hi,I meet a problem.I install mysql in Turbolinux workstation 6.1,it works seem ok.But when I connect it in another computer(using mysql client,odbc ect.),Err occured seem "the host '' not allow connect mysql...&

Connect mysql via java

2001-04-20 Thread Siomara Pantarotto
Hi everybody, Can someone help me to ungently connect to a mySQL database via java. All I need is a code as example to look at the sintax. I am pretty familiar with Oracle but I need to implement something this weekend in Mysql as back end Thks a lot Siomara __

Re: how to connect MySql with Java?

2001-04-09 Thread James Barwick
Mario, import java.sql.*; // Only need to do this once when the program starts try { Class.forName("org.gjt.mm.mysql.Driver").newInstance(); } catch (Exception DriverEx) { } try { String dbc="jdbc:mysql://mysql.server.net/databasename"; String dbu="databaseuser"; String dbp="passw

how to connect MySql with Java?

2001-04-09 Thread mario . lat
I'd like to use MySql with Java (under Linux) bu I can't be able to do that: how can I do? Thank you in advance, Mario. - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/

Re: Connect MySQL from Python

2001-03-08 Thread kentj
The following URL Points to the Python MySQl interface. Also Zope is a web applications server written in python which has the ability to connect to MySQL. http://dustman.net/andy/python/MySQLdb/ ±i¸Î¯q wrote: > Dear Guys, > > Is there any API or modules to connect MySQL fr

Connect MySQL from Python

2001-03-07 Thread 張裕益
Dear Guys, Is there any API or modules to connect MySQL from Python?? -- Best Regards, Winson Chang 3F, 2, 150 Lane, Sec. 5, Hsin I Rd., Taipei, Taiwan, R.O.C. Tel: +886-2-27225333 ext 376 Fax: +886-2-27222330 Email: [EMAIL PROTECTED]

How to connect MySql with ChiliASP on a Linux Cobalt ?

2001-02-19 Thread Denis Fohl
Hi, i'm a newbe with MySql and the list. I've made an application on my local host using ASP/Access and now i must transpose it on a Cobalt system with Linux and ChiliAsp/Mysql. I'm looking for the connection strings and principles to use but i can't find them. Is there someone to help me ? Th