John Jensen ([EMAIL PROTECTED]) writes:

> Do you have a remote server?
> Do you have a lot of data to enter into your database?
> Ask yourself:
> 
> Would you rather preface each and every insert with 
>       "INSERT [data] INTO [table.column] ...", than enter data by filling 
> in blanks in a webform.

All depends on what you want to do.  mysqldump is my friend - I use it quite often, 
especially when I want to change the structure of a table, and I can't remember the 
ALTER TABLE syntax (or don't have access to a browser).  I use mysqldump to dump the 
data with --add-drop-table, run it, edit the output file to alter the table structure, 
then feed it back to mysql.  Works great.

If I want to do CRUD on a few records or two, I'll use Escapade - it's faster than the 
PHP admin thingie for editing data.
--
Ed Carp, N7EKG          [EMAIL PROTECTED]           940/367-2744 cell phone
http://www.pobox.com/~erc               [EMAIL PROTECTED] - text pager

I sometimes wonder if the American people deserve to be free - they seem
so unwilling to fight to preserve the few freedoms they have left.

---------------------------------------------------------------------
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

Reply via email to