Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
$db_handler = "dbi:SQLite:$database:$host";#used host name to connect +to the remote machine but not sure if its correct. $DBIconnect = DBI->connect($db_handler, $user, $pw) or die die "Unable + to connect: $DBI::errstr\n"; $a_query = "SELECT * FROM $tablename where user_name=\"psibond\""; $res = $DBIconnect->prepare($a_query);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Querying an existing sqlite DB on a remote machine
by ikegami (Patriarch) on Jan 28, 2010 at 06:50 UTC | |
by BrowserUk (Patriarch) on Jan 28, 2010 at 07:02 UTC | |
by psibond (Initiate) on Jan 28, 2010 at 08:48 UTC | |
by Corion (Patriarch) on Jan 28, 2010 at 08:54 UTC | |
|
Re: Querying an existing sqlite DB on a remote machine
by stefbv (Priest) on Jan 28, 2010 at 08:24 UTC | |
by perrin (Chancellor) on Jan 28, 2010 at 17:53 UTC | |
|
Re: Querying an existing sqlite DB on a remote machine
by bart (Canon) on Jan 28, 2010 at 09:47 UTC |