RE: [PHP] MySQL - Creating The Database

2002-06-04 Thread Naintara Jain
OTECTED] t]On Behalf Of Christopher Riordan Sent: Tuesday, June 04, 2002 6:51 AM To: PHP Mailing List Subject: Re: [PHP] MySQL - Creating The Database He'll Be Back, they all come back Chris - Original Message - From: "Jason Teagle" <[EMAIL PROTECTED]> To: "

Re: [PHP] MySQL - Creating The Database

2002-06-04 Thread Juan Pablo Aqueveque
"'Jason Teagle'" <[EMAIL PROTECTED]>; "'PHP Mailing List'" ><[EMAIL PROTECTED]> >Sent: Tuesday, June 04, 2002 1:58 PM >Subject: RE: [PHP] MySQL - Creating The Database > >How very sad. It's not new - I've seen things

Re: [PHP] MySQL - Creating The Database

2002-06-04 Thread Christopher Riordan
He'll Be Back, they all come back Chris - Original Message - From: "Jason Teagle" <[EMAIL PROTECTED]> To: "PHP Mailing List" <[EMAIL PROTECTED]> Sent: Tuesday, June 04, 2002 9:45 AM Subject: Re: [PHP] MySQL - Creating The Database > >

Re: [PHP] MySQL - Creating The Database

2002-06-04 Thread Jason Teagle
- Original Message - From: "David Freeman" <[EMAIL PROTECTED]> To: "'Jason Teagle'" <[EMAIL PROTECTED]>; "'PHP Mailing List'" <[EMAIL PROTECTED]> Sent: Tuesday, June 04, 2002 1:58 PM Subject: RE: [PHP] MySQL - Creating T

Re: [PHP] RE: Time to Divide Lists? WAS: [PHP] MySQL - Creating The Database

2002-06-04 Thread Jason Wong
On Tuesday 04 June 2002 21:22, Rasmus Lerdorf wrote: > If you had searched the list archives yourself you would have seen that > this has been suggested a few times and rejected each time because nobody > would stick around and answer the newbie questions and newbies, being > newbies, would figure

RE: [PHP] RE: Time to Divide Lists? WAS: [PHP] MySQL - Creating The Database

2002-06-04 Thread Jay Blanchard
[snip] If you had searched the list archives yourself you would have seen that this has been suggested a few times and rejected each time because nobody would stick around and answer the newbie questions and newbies, being newbies, would figure out where the people who can answer their questions h

[PHP] RE: Time to Divide Lists? WAS: [PHP] MySQL - Creating The Database

2002-06-04 Thread Jay Blanchard
Quite frequently on this list and others there are questions where it is obvious that the manual or list archives have not been searched. Heck, some of these are cross posted to many lists where the sender may think that they will get relevant information. On the MySQL list the footer even has thi

RE: [PHP] MySQL - Creating The Database

2002-06-04 Thread David Freeman
> Also, if a person doesn't _know_ that PHP can create a > database for you, how would they know that somewhere in the > list of PHP functions is the answer to the problem? It would > be foolish to expect someone to read the _whole_ of the > documentation on MySQL or PHP just to see if t

Re: [PHP] MySQL - Creating The Database

2002-06-04 Thread Jason Wong
On Tuesday 04 June 2002 19:59, Jason Teagle wrote: > to be fair, it is customary to get all the tools and other preparations > (including necessary files) ready before embarking on a project. Thus, it > is logical to get a blank database ready before beginning. Why read yards > of documentati

Re: [PHP] MySQL - Creating The Database

2002-06-04 Thread Jason Teagle
David Freeman said: > From memory, you also have a few php commands that will help - why not > consult your local friendly php manual in the section under mysql > commands for choices and information. Jason Wong: >The problem is that you haven't read the (mysql) manual. Either read the >manual

Re: [PHP] MySQL - Creating The Database

2002-06-04 Thread Michael Hall
If your site is hosted in a *nix machine with shell access, another option might be to create a database and write up the SQL you need to structure it in a text file, then just feed it straight into MySQL like this: mysqladmin -uusername -ppassword create yourdatabase mysql -uusername -ppassword

Re: [PHP] MySQL - Creating The Database

2002-06-04 Thread Marek Kilimajer
ote: >- Original Message - >From: "David Freeman" <[EMAIL PROTECTED]> >To: "'PHP Mailing List'" <[EMAIL PROTECTED]> >Sent: Tuesday, June 04, 2002 11:50 AM >Subject: RE: [PHP] MySQL - Creating The Database > > > > >&

RE: [PHP] MySQL - Creating The Database

2002-06-04 Thread David Freeman
> Am I correct in saying that none of the SQL functions in PHP > can actually create a database file when no file existed > before? In other words, an empty database file must exist > before SQL functions can be called on it? If you have appropriate access you can. You do need 'root' acc

Re: [PHP] MySQL - Creating The Database

2002-06-04 Thread Jason Wong
On Tuesday 04 June 2002 19:03, Jason Teagle wrote: > > Ummm, not sure exactly what you're asking but you can use mysql_query to > > issue the relevant sql commands to create your database and tables and > > Am I correct in saying that none of the SQL functions in PHP can actually > create a datab

Re: [PHP] MySQL - Creating The Database

2002-06-04 Thread Jason Teagle
- Original Message - From: "David Freeman" <[EMAIL PROTECTED]> To: "'PHP Mailing List'" <[EMAIL PROTECTED]> Sent: Tuesday, June 04, 2002 11:50 AM Subject: RE: [PHP] MySQL - Creating The Database > Ummm, not sure exactly what you're

RE: [PHP] MySQL - Creating The Database

2002-06-04 Thread David Freeman
> Sorry if this is an ignorant question, but I want to do one > simple thing - create an empty MySQL-type database to upload > to the server so I can start using PHP to access it... how > can I do this? I don't really want to have to download the > whole MySQL product just to create an e

[PHP] MySQL - Creating The Database

2002-06-04 Thread Jason Teagle
Sorry if this is an ignorant question, but I want to do one simple thing - create an empty MySQL-type database to upload to the server so I can start using PHP to access it... how can I do this? I don't really want to have to download the whole MySQL product just to create an empty database! If t