Reply LinkBack Thread Tools Search this Thread
Old 30-01-2008, 07:00   #1 (permalink)
adam c
berserker than thou
 
adam c's Avatar
 
Join Date: Sep 2005
Location: Bristol
Posts: 450
Creating MySQL databases

What do you use?
I'm just starting out now and the method outlined in the book I'm learning from just isn't working for me. One of the developers mentioned using the official MySQL GUI application. Anyone else use this or something else?
Cheers.
  Reply With Quote
Old 30-01-2008, 07:02   #2 (permalink)
Larixk
Senior Member
 
Larixk's Avatar
 
Join Date: Sep 2006
Location: Utrecht, Netherlands
Posts: 933
Send a message via MSN to Larixk
plain sql or phpMyAdmin
__________________
  Reply With Quote
Old 30-01-2008, 07:05   #3 (permalink)
adam c
berserker than thou
 
adam c's Avatar
 
Join Date: Sep 2005
Location: Bristol
Posts: 450
Cheers Larixk. Yeah I've tried using plain sql it's just difficult with this book. I think I need to maybe change the book I'm learning from.
Got any recommendations for that? The one I'm using at the moment is PHP & MySQL for Dummies, which is really clear for the PHP side but is making it confusing on the MySQL side of things.
  Reply With Quote
Old 30-01-2008, 07:12   #4 (permalink)
d*d
Senior Member
 
d*d's Avatar
 
Join Date: Oct 2004
Location: Bristol
Posts: 3,054
php myAdmin is all I've ever used
  Reply With Quote
Old 30-01-2008, 07:40   #5 (permalink)
haku
shiro
 
haku's Avatar
 
Join Date: Aug 2007
Location: Yokohama, Japan
Posts: 1,805
phpmyAdmin is all I've ever used as well, but I've never felt the need to use anything else - its pretty straightforward and easy to use.
  Reply With Quote
Old 30-01-2008, 07:47   #6 (permalink)
MikeMackay
Everything is fine.
 
MikeMackay's Avatar
 
Join Date: Feb 2005
Location: Witham & London
Posts: 744
Send a message via MSN to MikeMackay Send a message via Skype™ to MikeMackay
I'd definitely recommend phpMyAdmin too, it's great to work with, especially when you're starting out in the world of MySQL. I've also used the MySQL command line too, but not very often...

- Mike
  Reply With Quote
Old 30-01-2008, 08:01   #7 (permalink)
adam c
berserker than thou
 
adam c's Avatar
 
Join Date: Sep 2005
Location: Bristol
Posts: 450
cheers guys.
  Reply With Quote
Old 30-01-2008, 08:08   #8 (permalink)
proc355
Trailer Trash™
 
proc355's Avatar
 
Join Date: Sep 2006
Posts: 851
use the fricking command line already—then you'll actually know what you're doing; since you'll be writing sql to query your db anyway, you may as well learn how through the console, it gives you decent feedback.

phpMyAdmin is all well and good if that's all the access your host gives you but you should set up a local server so you can test your queries etc - phpMyAdmin is as slow as shit for playing in.

…and RTFM, the MySQL manual is top quality and has a good tutorial.

gui's indeed; more hassle than they are worth.
__________________
meh.
  Reply With Quote
Old 30-01-2008, 08:17   #9 (permalink)
iblastoff
gotsa a malanga!
 
iblastoff's Avatar
 
Join Date: Apr 2006
Location: ottawa, canada
Posts: 488
its not like you can't run your own sql queries in phpmyadmin. extremely handy since it displays the query as well when you perform an action via the gui.
__________________
  Reply With Quote
Old 30-01-2008, 08:53   #10 (permalink)
proc355
Trailer Trash™
 
proc355's Avatar
 
Join Date: Sep 2006
Posts: 851
Quote:
Originally Posted by iblastoff
its not like you can't run your own sql queries in phpmyadmin
did i say you couldn't?
__________________
meh.
  Reply With Quote
Old 31-01-2008, 06:45   #11 (permalink)
adam c
berserker than thou
 
adam c's Avatar
 
Join Date: Sep 2005
Location: Bristol
Posts: 450
Quote:
Originally Posted by proc355
use the fricking command line already—then you'll actually know what you're doing; since you'll be writing sql to query your db anyway, you may as well learn how through the console, it gives you decent feedback.

phpMyAdmin is all well and good if that's all the access your host gives you but you should set up a local server so you can test your queries etc - phpMyAdmin is as slow as shit for playing in.

…and RTFM, the MySQL manual is top quality and has a good tutorial.

gui's indeed; more hassle than they are worth.
Yeah I have been using the command line, it's just this book (or manual) tells you to build some weird web interface and use that to send querys and I was wondering if there was anything better.
I'll give the actual MySQL manual a go though.
  Reply With Quote
Old 31-01-2008, 07:01   #12 (permalink)
iblastoff
gotsa a malanga!
 
iblastoff's Avatar
 
Join Date: Apr 2006
Location: ottawa, canada
Posts: 488
Quote:
Originally Posted by proc355
did i say you couldn't?

so in other words, theres no benefit to using the CLI instead. especially for a newbie.
__________________
  Reply With Quote
Old 31-01-2008, 07:23   #13 (permalink)
Hunch
Grumpy old man
 
Hunch's Avatar
 
Join Date: Oct 2007
Location: North Japan
Posts: 1,457
For a number of years, I created databases through the code. It always seemed pretty normal since you often needed a database initialization script to wipe/rebuild the database when testing/developing, but these days I use phpMyAdmin like everyone else.
  Reply With Quote
Old 31-01-2008, 10:30   #14 (permalink)
Larixk
Senior Member
 
Larixk's Avatar
 
Join Date: Sep 2006
Location: Utrecht, Netherlands
Posts: 933
Send a message via MSN to Larixk
Quote:
Originally Posted by iblastoff
so in other words, theres no benefit to using the CLI instead. especially for a newbie.
yes there is: it's way more productive to work with just a keyboard than with keyboard and mouse.
__________________
  Reply With Quote
Old 31-01-2008, 11:04   #15 (permalink)
haku
shiro
 
haku's Avatar
 
Join Date: Aug 2007
Location: Yokohama, Japan
Posts: 1,805
I find it the most productive to use both. I love my shortcuts, but depending on what you are clicking, a mouse can be faster.
  Reply With Quote
Old 31-01-2008, 11:37   #16 (permalink)
proc355
Trailer Trash™
 
proc355's Avatar
 
Join Date: Sep 2006
Posts: 851
Quote:
Originally Posted by iblastoff
so in other words, theres no benefit to using the CLI instead. especially for a newbie.
how did you extrapolate that?

there's no advantage typing the same commands in to phpMyAdmin—especially when it's a lot slower to give you feedback. a far more frustrating experience if you're a ‘newbie’ imo

by the nature of these tools, there is never anything you can do via the cli that can be done via a gui—the opposite is not true.

perhaps you would care to elaborate why you feel clicking a submit button is easier than hitting return?

i dont even use mysql much any more (i use postgresql, or sqlite for simpler things) but i'ts cli is one of the best i've used.
__________________
meh.
  Reply With Quote
Old 28-02-2008, 11:21   #17 (permalink)
tofallinlove
Registered User
 
Join Date: Feb 2008
Location: UK
Posts: 19
Send a message via MSN to tofallinlove
i agree php my admin is the savior
  Reply With Quote
Old 28-02-2008, 14:16   #18 (permalink)
cjgraphix
Website Developer
 
cjgraphix's Avatar
 
Join Date: Jun 2007
Location: Pacific Northwest
Posts: 334
CocoaMySQL for my local server , and then phpMyAdmin for the hosted server. I just export everything from my local, so it's just running a query in phpMyAdmin.
__________________
  Reply With Quote
Old 28-02-2008, 14:26   #19 (permalink)
Dusteh
Sir digby chicken caesar
 
Dusteh's Avatar
 
Join Date: Sep 2004
Posts: 4,040
Navicat is great.
__________________
unconsolidated isoparms
  Reply With Quote
Old 28-02-2008, 17:54   #20 (permalink)
.sleep
Senior Member
 
.sleep's Avatar
 
Join Date: Mar 2007
Location: california
Posts: 253
Send a message via AIM to .sleep
CocoaMySQL for all sql stuff.
  Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search


Contact Us - Web Design Forums - Archive - Top
Search Engine Optimization by vBSEO 3.0.0 RC8