in reply to Re: Username regex, MYSQL random
in thread Username regex, MYSQL random
Replace the database, username, password (or for non mysql remove LIMIT 1 and change DBI driver name).use strict; use DBI; my $database='db'; my $username='user'; my $password='pass'; my $dbh=DBI->connect('DBI:mysql:database='.$database,$username,$passwo +rd); print 'dbh error' if (!$dbh); my $sth=$dbh->prepare('SELECT *, rand() as orderno FROM table_name ORDER BY orderno LIMIT 1'); print 'sth error' if (!$sth); my $rv=$sth->execute(); print 'rv error' if (!$rv); my @rand_row = $sth->fetchrow_array(); $sth->finish(); print join(',',@rand_row),"\n"; print "finished\n";
Hope this helps
UnderMine
Hope this helps
|
|---|