in reply to Re^3: SQLite handling of errors through common function
in thread SQLite handling of errors through common function
Thanks I want to mean the DBI handle which is obtained after connect call.
For the second point let me try to explain further with an example. Say we want to create an database called EmpRec which will comprises of a set tables e.g. EmpAdd, EmpSal etc. Now when we try to connect first we need to connect to EmpRec database. Below are the set of queries which is fired in MySql
mysql> CREATE DATABASE EmpRec;
mysql> USE EmpRec Database changed
So is something like above is supported in SQLite and if yes how we can do that
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^5: SQLite handling of errors through common function
by mje (Curate) on Nov 07, 2013 at 14:09 UTC |
In Section
Seekers of Perl Wisdom