If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > how do i edit a mysql database? (was "Really basic MySQL question")

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-10-05, 14:00
xtgeminiman xtgeminiman is offline
Registered User
 
Join Date: Jan 2005
Posts: 23
Question how do i edit a mysql database? (was "Really basic MySQL question")

Hey, I'm looking to learn about MySQL DB's so my site can hold more connections and move at a quicker rate. I'm used to editing databases by simply editing them from my desktop so my question is, how do I edit a MySQL database? Can someone point me in the direction to a site to help someone looking to learn MySQL? I made a MySQL db on my server which is hosted by an external site. Here's what it says when I created the db...

You have access to one mySQL database that you can use.

Database Name: vgameforcecom
Username: vgameforcecom

Please note that when connecting to the database from a script on your website you must use the internal server IP on our network which is 192.168.14.188
If you are connecting externally using MySQL connection software the IP is 208.170.149.188

You can connect to the database using PHP or via ASP with the following connection string:
DRIVER={MySQL ODBC 3.51 Driver};Server=192.168.14.188;UID=vgameforcecom
;PWD={insert password here};database=vgameforcecom;Option=16386
Reply With Quote
  #2 (permalink)  
Old 01-10-05, 21:33
savbill savbill is offline
Registered User
 
Join Date: Feb 2004
Posts: 533
I like to use SQLyog. They now have a free version that should work great for your purpose.

MySQL Administrator is another valuable tool for DB configuraton and evaluating database performance. It can be downloaded at the MySQL Site.

you can install MySQL server on your desktop PC which works well for learning and testing locally. You'll also need a server and scripting language for interaction with the database.
Check this thread in the PHP Forum for Windows Apache, PHP, MySQL configuration PHP5 MySQL Config on XP



/
__________________
~

Bill
Reply With Quote
  #3 (permalink)  
Old 01-26-05, 03:47
theodora_carley theodora_carley is offline
Registered User
 
Join Date: Jan 2005
Posts: 4
Or you can use phpmyadmin which is free of charge
Reply With Quote
  #4 (permalink)  
Old 01-26-05, 20:33
Steve T. Steve T. is offline
Registered User
 
Join Date: Sep 2003
Location: So. Cal. USA
Posts: 142
RE: how do I edit a MySQL database?

If you have command line access, you can interact with your databases through that if you know SQL. If you are accessing it remotely, you'd have to ssh or telnet in.

If you are interacting with your db's through your website, you could interact with your database by writing code in your website to do things (read/write/edit) using technologies like PHP. This also requires knowledge of SQL.

If you have MySQL management tools as bill and theodora have mentioned, you can skip knowing SQL and use the tool's GUI to do stuff. I use phpMyAdmin, a web-based tool that your web host may already have installed for you.

I'm afraid I do not know much SQL, but what I have learned I got from the MySQL manual. I keep my MySQL and PHP manuals open and available everytime I work on web projects using those technologies. There are also lots of tutorials out there to learn the basics.

Hope this helps some!
--ST
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On