[svn:dbd-oracle] r15120 - dbd-oracle/trunk/examples
[email protected] Thu, 2 Feb 2012 13:46:19 -0800 (PST)
| Newsgroups | perl.dbd.oracle.changes |
|---|---|
| Message-ID | <[email protected]> |
Author: yanick Date: Thu Feb 2 13:46:18 2012 New Revision: 15120 Modified: dbd-oracle/trunk/examples/bind.pl dbd-oracle/trunk/examples/commit.pl dbd-oracle/trunk/examples/curref.pl dbd-oracle/trunk/examples/ex.pl dbd-oracle/trunk/examples/inserting_longs.pl dbd-oracle/trunk/examples/mktable.pl dbd-oracle/trunk/examples/oradump.pl dbd-oracle/trunk/examples/proc.pl dbd-oracle/trunk/examples/read_long_via_blob_read.pl dbd-oracle/trunk/examples/tabinfo.pl Log: change for the modern /usr/bin/env perl Modified: dbd-oracle/trunk/examples/bind.pl ============================================================================== --- dbd-oracle/trunk/examples/bind.pl (original) +++ dbd-oracle/trunk/examples/bind.pl Thu Feb 2 13:46:18 2012 @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w +#!/usr/bin/env perl # # bind.pl # Modified: dbd-oracle/trunk/examples/commit.pl ============================================================================== --- dbd-oracle/trunk/examples/commit.pl (original) +++ dbd-oracle/trunk/examples/commit.pl Thu Feb 2 13:46:18 2012 @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w +#!/usr/bin/env perl # # commit.pl # Modified: dbd-oracle/trunk/examples/curref.pl ============================================================================== --- dbd-oracle/trunk/examples/curref.pl (original) +++ dbd-oracle/trunk/examples/curref.pl Thu Feb 2 13:46:18 2012 @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w +#!/usr/bin/env perl # # curref.pl - by Geoffrey Young # Modified: dbd-oracle/trunk/examples/ex.pl ============================================================================== --- dbd-oracle/trunk/examples/ex.pl (original) +++ dbd-oracle/trunk/examples/ex.pl Thu Feb 2 13:46:18 2012 @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w +#!/usr/bin/env perl # Short example using bind_columns() to list a table's values use DBI; Modified: dbd-oracle/trunk/examples/inserting_longs.pl ============================================================================== --- dbd-oracle/trunk/examples/inserting_longs.pl (original) +++ dbd-oracle/trunk/examples/inserting_longs.pl Thu Feb 2 13:46:18 2012 @@ -1,4 +1,4 @@ -#!perl +#!/usr/bin/env perl use strict; use warnings; Modified: dbd-oracle/trunk/examples/mktable.pl ============================================================================== --- dbd-oracle/trunk/examples/mktable.pl (original) +++ dbd-oracle/trunk/examples/mktable.pl Thu Feb 2 13:46:18 2012 @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w +#!/usr/bin/env perl # Sample DBI program to create a new table and load data into it. # # Author: Kevin Stock (original oraperl script) Modified: dbd-oracle/trunk/examples/oradump.pl ============================================================================== --- dbd-oracle/trunk/examples/oradump.pl (original) +++ dbd-oracle/trunk/examples/oradump.pl Thu Feb 2 13:46:18 2012 @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w +#!/usr/bin/env perl # # Dump the contents of an Oracle table into a set of insert statements. # Quoting is controlled by the datatypes of each column. (new with DBI) Modified: dbd-oracle/trunk/examples/proc.pl ============================================================================== --- dbd-oracle/trunk/examples/proc.pl (original) +++ dbd-oracle/trunk/examples/proc.pl Thu Feb 2 13:46:18 2012 @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w +#!/usr/bin/env perl # Short examples of procedure calls from Oracle.pm # These PL/SQL examples come from: Eric Bartley <[email protected]>. Modified: dbd-oracle/trunk/examples/read_long_via_blob_read.pl ============================================================================== --- dbd-oracle/trunk/examples/read_long_via_blob_read.pl (original) +++ dbd-oracle/trunk/examples/read_long_via_blob_read.pl Thu Feb 2 13:46:18 2012 @@ -1,4 +1,4 @@ -#!perl +#!/usr/bin/env perl use strict; use warnings; Modified: dbd-oracle/trunk/examples/tabinfo.pl ============================================================================== --- dbd-oracle/trunk/examples/tabinfo.pl (original) +++ dbd-oracle/trunk/examples/tabinfo.pl Thu Feb 2 13:46:18 2012 @@ -1,4 +1,4 @@ -#!/usr/bin/perl -w +#!/usr/bin/env perl # # tabinfo #