[PHP-DB] Apache+PHP+MySQL installation at once - HOW?

2001-05-04 Thread Vojtech Dvorak

Hi,
I want to install this great trio Apache+PHP+MySQL and don't want it install
step by step, program by program.
I remember, that I saw somewhere some prepared package for very fast and
comfortable installation of these three at once.
Don't you now where I can find it?
Thanks
Vojtech



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DB] bout mysql

2001-03-13 Thread Vojtech Dvorak

   can i grant a user to access two database in mySQL?
Yes just use multiple...
GRANT PRIVILEGES ON (or database you want to grant) TO user@"%" IDENTIFIED
BY 'user_pass'

   does mysql has function DECODE like oracle ?
don't know sorry

   how can i know which table or database that user can access if i am
   admin ?
Just check content of mysql database tables "user" etc.
Than RTFM.

Regards
Vojtech




-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DB] Import database in access to mysql

2001-03-01 Thread Vojtech Dvorak

Yes u can... by using MyODBC from www.mysql.com
Make ODBC connection to your database (via 32bit ODBC in control panel) and
than you can export tables directly to MySQL database as loading data from
MySQL.
I forget web page where this was shown step by step, sorry...
Vojtech

- Original Message -
From: Jennifer Demeterio [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Thursday, March 01, 2001 10:17 AM
Subject: [PHP-DB] Import database in access to mysql


hello,

i'm using mysql as my database with php but i have an existing database in
access, is it possible to import the database in access to mysql ?

thanks in advance...

hunny




-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP-DB] mysql access

2001-02-14 Thread Vojtech Dvorak

What about...
GRANT ALL PRIVILEGES ON *.* TO user@"%" IDENTIFIED BY 'user_pass' WITH GRANT
OPTION

make also this for localhost...
GRANT ALL PRIVILEGES ON *.* TO user@localhost IDENTIFIED BY 'user_pass' WITH
GRANT OPTION

By the way, RTFM ;-)
Vojta

 hi all...
 can you tell me how can i grant root permissions to a user that can
connect
 from anywhere (%) on mysql?




-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]