I'm trying to split the results of a mysql query using perl and DBI module. Here's my code:
#!/usr/bin/perl -w
use DBI;
$dbh = DBI->connect('DBI:mysql:host', 'user', 'password'
) || die "Could not connect to database: $DBI::errstr";
$sql = "SELECT * FROM users;";
$sth = $dbh->prepare($sql);
$sth->execute or die "SQL Error: $DBI::errstr\n";
while (@row = $sth->fetchrow_array) {
my @value1 = split(".",@row);
my $domain = $value1[1];
print "$domain\n";
}
$dbh->disconnect();
The query result is similar to: username.domain So I want to split the result with "." to show only the "domain" but it return me an error: Use of uninitialized value $domain in concatenation (.) or string ...
Thanks!