summaryrefslogtreecommitdiff
path: root/databases/p5-Ima-DBI/DESCR
diff options
context:
space:
mode:
authorhe <he>2004-11-06 01:29:50 +0000
committerhe <he>2004-11-06 01:29:50 +0000
commit16eae0a40d8054227fce0c5eab4280a4e9c10b45 (patch)
tree1650d7192e8d6961ac1c4b9119e86d6ca2131a4a /databases/p5-Ima-DBI/DESCR
parentb163b5c29be3351a833b91457e25c34feba3b848 (diff)
downloadpkgsrc-16eae0a40d8054227fce0c5eab4280a4e9c10b45.tar.gz
Import p5-Ima-DBI 0.33. From the module's documentation:
Ima::DBI attempts to organize and facilitate caching and more efficient use of database connections and statement handles. One of the things I always found annoying about writing large programs with DBI was making sure that I didn't have duplicate database handles open. I was also annoyed by the somewhat wasteful nature of the prepare/execute/finish route I'd tend to go through in my subroutines. The new DBI->connect_cached and DBI->prepare_cached helped alot, but I still had to throw around global datasource, username and password information. So, after a while I grew a small library of DBI helper routines and techniques. Ima::DBI is the culmination of all this, put into a nice(?), clean(?) class to be inherited from.
Diffstat (limited to 'databases/p5-Ima-DBI/DESCR')
-rw-r--r--databases/p5-Ima-DBI/DESCR14
1 files changed, 14 insertions, 0 deletions
diff --git a/databases/p5-Ima-DBI/DESCR b/databases/p5-Ima-DBI/DESCR
new file mode 100644
index 00000000000..3da2274c946
--- /dev/null
+++ b/databases/p5-Ima-DBI/DESCR
@@ -0,0 +1,14 @@
+Ima::DBI attempts to organize and facilitate caching and more
+efficient use of database connections and statement handles.
+
+One of the things I always found annoying about writing large
+programs with DBI was making sure that I didn't have duplicate
+database handles open. I was also annoyed by the somewhat wasteful
+nature of the prepare/execute/finish route I'd tend to go through
+in my subroutines. The new DBI->connect_cached and DBI->prepare_cached
+helped alot, but I still had to throw around global datasource,
+username and password information.
+
+So, after a while I grew a small library of DBI helper routines
+and techniques. Ima::DBI is the culmination of all this, put into
+a nice(?), clean(?) class to be inherited from.