![]() | |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I simply want to collect first name, last name, dj name, and type of DJ: vinyl, cd, mp3, any and email for a list. Where should I begin.??? |
#3
| |||
| |||
|
|
please point me for a quick and easy way to start developing databases. You are the "target market" for two products. Sun's Java Studio |
#4
| |||
| |||
|
|
hello new friends. I just completed two years of school for front end graphic and web design. I have a good job, and am happy, but am seeing lots of potential clients slip away because I did not learn database design and integration. My hosting offers multiple domains and sql databases, and I am not a web idiot, but an amateur. I do not want to learn three new programming languages just to make a simple database form and method of server storage. The books are huge, on this topic and the web is vast... I simply want to collect first name, last name, dj name, and type of DJ: vinyl, cd, mp3, any and email for a list. Where should I begin.??? is there software specifically for making a custom database, incorporating the custom form into my html/ asp site, and storing it on a server, in an easy to acces formula? Google led me to you, now please point me for a quick and easy way to start developing databases. I can't offer money but I do have music I can share legally off of this site: www.therecordpool.com |
#5
| |||
| |||
|
|
hello new friends. I just completed two years of school for front end graphic and web design. I have a good job, and am happy, but am seeing lots of potential clients slip away because I did not learn database design and integration. My hosting offers multiple domains and sql databases, and I am not a web idiot, but an amateur. I do not want to learn three new programming languages just to make a simple database form and method of server storage. The books are huge, on this topic and the web is vast... I simply want to collect first name, last name, dj name, and type of DJ: vinyl, cd, mp3, any and email for a list. Where should I begin.??? is there software specifically for making a custom database, incorporating the custom form into my html/ asp site, and storing it on a server, in an easy to acces formula? Google led me to you, now please point me for a quick and easy way to start developing databases. I can't offer money but I do have music I can share legally off of this site: www.therecordpool.com |
#6
| |||
| |||
|
|
technorganic wrote: hello new friends. I just completed two years of school for front end graphic and web design. I have a good job, and am happy, but am seeing lots of potential clients slip away because I did not learn database design and integration. My hosting offers multiple domains and sql databases, and I am not a web idiot, but an amateur. I do not want to learn three new programming languages just to make a simple database form and method of server storage. The books are huge, on this topic and the web is vast... I simply want to collect first name, last name, dj name, and type of DJ: vinyl, cd, mp3, any and email for a list. Where should I begin.??? is there software specifically for making a custom database, incorporating the custom form into my html/ asp site, and storing it on a server, in an easy to acces formula? Google led me to you, now please point me for a quick and easy way to start developing databases. I can't offer money but I do have music I can share legally off of this site: www.therecordpool.com Despite the learning curve, for me php and mysql would still be the way to go. It may look daunting but a couple of good books really could get you well on the way. Plus the online community for these items is unbelievable. You could also think about teaming up with someone who already has this expertise. In answer to your example question, regardless of what way you intend to go, you need (at a guess) 3 tables. They could look like this: contacts(contact_id*,f_name,I_name,email) deejays(contact_id*,dj_name*,media_id*) media(media_id*,media) |
|
you could put all that dj info into the contact table, but it's more flexible this way. Also, maybe a dj uses more than 1 kind of media,or uses more than 1 stage name. In either case, they'd simply take up an extra row in the dj table. And then you just need to construct some forms to populate each of the tables. |
#7
| |||
| |||
|
|
zac.carey (AT) gmail (DOT) com wrote: technorganic wrote: hello new friends. I just completed two years of school for front end graphic and web design. I have a good job, and am happy, but am seeing lots of potential clients slip away because I did not learn database design and integration. My hosting offers multiple domains and sql databases, and I am not a web idiot, but an amateur. I do not want to learn three new programming languages just to make a simple database form and method of server storage. The books are huge, on this topic and the web is vast... I simply want to collect first name, last name, dj name, and type of DJ: vinyl, cd, mp3, any and email for a list. Where should I begin.??? is there software specifically for making a custom database, incorporating the custom form into my html/ asp site, and storing it on a server, in an easy to acces formula? Google led me to you, now please point me for a quick and easy way to start developing databases. I can't offer money but I do have music I can share legally off of this site: www.therecordpool.com Despite the learning curve, for me php and mysql would still be the way to go. It may look daunting but a couple of good books really could get you well on the way. Plus the online community for these items is unbelievable. You could also think about teaming up with someone who already has this expertise. In answer to your example question, regardless of what way you intend to go, you need (at a guess) 3 tables. They could look like this: contacts(contact_id*,f_name,I_name,email) deejays(contact_id*,dj_name*,media_id*) media(media_id*,media) given that media is just the type of media, I would forego using the pseudokey media ID. (ID keys can be useful, but they are often overused.) change the tables as follows: deejays(contact_id*,dj_name*,media_type) media(media_type { optionally add a long description } ) you could put all that dj info into the contact table, but it's more flexible this way. Also, maybe a dj uses more than 1 kind of media,or uses more than 1 stage name. In either case, they'd simply take up an extra row in the dj table. And then you just need to construct some forms to populate each of the tables. and also add Froeign key constraints. These ensure that you cannot assign a media type to a DJ that does not exist in the media table. HTH, ed |
![]() |
| Thread Tools | |
| Display Modes | |
| |