Hi
>
> Now my Question: Does this use the Connection via Apache::DBI ?
Yes
> Does it use the Apache::DBI Connection if i set WriteMode ?
>
Yes, the WriteMode setting is only checked by DBIx::Recordset itself before
any writes to the DB
Gerald
-
Hi
In my Apache startup.pl i have the following:
use Apache::DBI ();
[...]
Apache::DBI->connect_on_init(
"DBI:mysql:database=database;host=localhost",
"user", "password",
{
PrintError => 1, # warn() on errors
RaiseError => 0, # don't die on error
AutoCommit => 1,