Development Articles
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsOtherDevelopment Articles

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old April 3rd, 1999, 07:01 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Great Article

This article is fantastic. It really helped me get a jump start on mysql.

Reply With Quote
  #2  
Old April 4th, 1999, 05:47 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
It really helps me

Thanks for a great job. It really helps me to start understanding Mysql. More down to earth than the official document.

Reply With Quote
  #3  
Old April 6th, 1999, 03:11 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Thank You!

Really hard to find a good MySQL tutorial... Saved me quite a bit of time getting things up and running... Thanks!

Reply With Quote
  #4  
Old April 6th, 1999, 07:42 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Well written ande helpful

It's a great help. Any chance of a printable version?

Reply With Quote
  #5  
Old April 7th, 1999, 06:58 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
SQL

This was a great easy to follow Introduction to SQL Thanks!

Reply With Quote
  #6  
Old April 8th, 1999, 12:02 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Good tutorial

I always come back to find the way to do queries the simple way.

Reply With Quote
  #7  
Old April 8th, 1999, 02:16 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Very nice!

Thanks for the easy to understand tutorial!
Let's say I needed to store information on
what people have bought from a company in
the past. Each person may have bought more
than one item from us so storing the information
in a single text field would be difficult.
How would I go about this?

Reply With Quote
  #8  
Old April 8th, 1999, 02:43 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Re: Very nice!

This is pretty easy to do, but the database you create will have to be designed to accommodate it. You will need 2 different tables, one to store a record for each 'person' and one for each 'purchase,' you can then link those 2 tables together with a common field. For example, the person table would have a personID, personName, etc. The purchase table should contain purchaseID, personID, purchaseAmount, etc. These two tables both have the common field personID. This allows you to have a one to many relationship. You can do all sorts of fun things with JOINs once your database is set up like this. See: http://www.mysql.com/Manual_chapter/manual_Reference.html#JOIN for more information on JOINs in MySQL.

Reply With Quote
  #9  
Old April 8th, 1999, 09:00 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Thanks

Thanks for the great article. Considering the overabundance of database information on the Web, you guys really helped me concentrate on what needs to be learned without having to wade through all the unneccesary details.

Reply With Quote
  #10  
Old April 9th, 1999, 12:03 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
straight to the point

once you've got the database installed on your system of course...

Love the new look site, inspiration as always.. keep it up. I'll be back.

Surrey , Uk

Reply With Quote
  #11  
Old April 12th, 1999, 03:58 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
I wish man pages were like this

Great Article. I have been reluctant to dive into this SQL stuff. I was able to get my database up and running the same day!

I wish man pages were like this
Robert.

Reply With Quote
  #12  
Old April 12th, 1999, 11:23 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Im Impressed !

Im a professional programmer interested in expanding my capabilities. I am currently
doing this by investigating mySQL, and am very impressed with the technology. This
page has given me the direct information I was interested in, making it easy to get started and quick to get a solid basic understanding of the DBMS.

Thanks.

Reply With Quote
  #13  
Old April 13th, 1999, 09:16 AM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
mysql addict

Hi !..I am impressed by the simple yet very robust feature of mysql..i am realy novice in mysql..i find this tutorial very intutive and help me to gain a lot about mysql in very short span of time..i hope the author will provide us with more practical and illustrative example to make the tutorial more intersting..
Thnks

Reply With Quote
  #14  
Old April 18th, 1999, 05:33 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Great source of information...

The article here was greate for explaining setting up the database... I hope there is more expansion later about CGI interfacing with the database.. The MySQL manual is quite comprehensive, however, I think examples go much further.
<br>
<br>
I did experience one problem while going through the tutorial. I'm running Win32 MySQL server and if I set up a password on the root account and attempt to drop a database, I get prompted for a password. I enter it and when I hit enter, for some reason it takes the <CR> twice and automatically answers the <y/N> for 'do you really want to do this?' with a No. The only way I can drop a database is by removing the root password, then it works fine.
<br>
Server Version: 3.21.29a-gamma-debug

Reply With Quote
  #15  
Old April 21st, 1999, 10:24 PM
guest
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Any way other than telnet?

This article really help! But I would like to know is there any other client (command mode) to connect to remote MySQL server?

thanks


porsche

Reply With Quote
Reply

Viewing: Dev Shed ForumsOtherDevelopment Articles > Beginning MySQL Tutorial


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump



 Free IT White Papers!
 
How to Present Effectively Online
This white paper offers practical and actionable advice on the key steps that any presenter should consider as they plan and execute a Webinar or online meeting.

 
Open Source Security Myths
Open Source Software (OSS) is computer software whose source code is available to the general public with relaxed or non-existent intellectual property restrictions (or arrangement such as the public domain), and is usually developed with the input of many contributors.

 
Power and Cooling Capacity Management for Data Centers
This paper describes the principles for achieving power and cooling capacity management.

 
Scalable, Fault-Tolerant NAS for Oracle - The Next Generation
For several years NAS has been evolving as a storage alternative for Oracle databases, and for good reason: NAS is quite often the simplest, most cost-effective storage approach for Oracle. Learn about the benefits that HP's approach to scalable NAS brings to Oracle environments in this comprehensive white paper.

 
Understanding Web Application Security Challenges
This white paper discusses many common threats and preventive measures for Web application security, and explains what you can do to help protect your organization.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2009 by Developer Shed. All rights reserved. DS Cluster 3 hosted by Hostway
Stay green...Green IT