MySQL Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsDatabasesMySQL Help

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 August 4th, 1999, 04:42 PM
Dass
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
OK
The database contains 3 columns with the names "member", "password" and "email"
Now for creating new accounts, I will need to check the "member" column to see if the member name already exists. How do I specifically choose the "member" column to see if $login==$member.


Reply With Quote
  #2  
Old August 9th, 1999, 12:29 AM
ryanh
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
how much info do you need? kinda a general question. have you looked at the DBI module for mysql? check out the mysql docs page and look for info there. www.mysql.org

if you have a more specific question, let me know.

Reply With Quote
  #3  
Old August 9th, 1999, 09:08 AM
Dass
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
I don't undersand why that is so General?
All I need to do is check under the MEMBER column in my database to see if the login name trying to be created already exists.

Reply With Quote
  #4  
Old August 9th, 1999, 10:03 AM
rod k
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
I can't tell you how to code it in Perl, but the query would be something like:

select * from table where member=login

if you get a row returned then you know that it's been used. if no row is returned than it hasn't.


Reply With Quote
  #5  
Old August 25th, 1999, 10:41 AM
moderator
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
This may help a little bit with the Perl coding:

<BLOCKQUOTE><font size="1" face="Verdana,Arial,Helvetica">code:</font><HR><pre>
use DBI;

$dbh=DBI->connect("dbi:mysql:$serverName:$databaseName",$mysqlUsername,$mysqlPassword");
$sth=$dbh->prepare("select * from $tableName where member='$login'");
$sth->execute;
if($row=$sth->fetchrow_arrayref){
# Username already taken
print "Sorry.";
}else{
# Put new username in
$dbh->do("insert into $tableName values ('$login','$password','$email')");
print "Thank you.";
}
$sth->finish;
$dbh->disconnect;
[/quote]

That code is just off the top of my head, and I haven't tested it at all, so there may be errors in it, but that should give you a good head start.

Reply With Quote
  #6  
Old August 25th, 1999, 02:16 PM
rod k
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
YUCK! URL

Now I know why I use PHP!!

Reply With Quote
  #7  
Old August 26th, 1999, 09:48 AM
moderator
Guest
Dev Shed Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Yes. PHP is definately more desirable for database connectivity. Perl does rock when you need to use or manipulate files/directories.

Reply With Quote
Reply

Viewing: Dev Shed ForumsDatabasesMySQL Help > Perl communicating with mysql database

Developer Shed Advertisers and Affiliates



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

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


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap