in reply to Re: from 5.8 to 5.10
in thread from 5.8 to 5.10
... you are right Clinton. WebDB is a simple package I created to manage the database connection. It's a simple script with several subroutines to control the DB connection and to menage the HTML output.
But above all I don't understand what Bytecode is. This is my whole pragma section:
#!/usr/bin/perl -w use strict; use warnings; use FindBin qw($Bin); use lib "$Bin/lib"; use WebDB; use CGI qw(:standard :html3); use CGI::Carp qw(warningsToBrowser fatalsToBrowser); use utf8; binmode(STDOUT, ':utf8');
As far I understand I don't make use of something named as Bytecode
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: from 5.8 to 5.10
by szabgab (Priest) on Nov 08, 2008 at 13:38 UTC | |
by Anonymous Monk on Nov 08, 2008 at 14:06 UTC | |
by frasco (Beadle) on Nov 08, 2008 at 13:54 UTC | |
by szabgab (Priest) on Nov 08, 2008 at 14:03 UTC | |
by frasco (Beadle) on Nov 08, 2008 at 14:20 UTC | |
by szabgab (Priest) on Nov 08, 2008 at 14:58 UTC | |
by JadeNB (Chaplain) on Nov 10, 2008 at 00:36 UTC |