<div dir="ltr">I can't believe this hasn't been suggested yet!<div><br></div><div><a href="http://search.cpan.org/~hmbrand/DBD-CSV-0.41/lib/DBD/CSV.pm">DBD::CSV</a> should allow you to connect to a database implemented in .csv files and hopefully preserve all your existing queries.</div>

<div><br></div><div>r</div><div><br></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Wed, Mar 19, 2014 at 11:35 AM,  <span dir="ltr"><<a href="mailto:san-diego-pm-request@pm.org" target="_blank">san-diego-pm-request@pm.org</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Send San-Diego-pm mailing list submissions to<br>
        <a href="mailto:san-diego-pm@pm.org">san-diego-pm@pm.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="http://mail.pm.org/mailman/listinfo/san-diego-pm" target="_blank">http://mail.pm.org/mailman/listinfo/san-diego-pm</a><br>
or, via email, send a message with subject or body 'help' to<br>
        <a href="mailto:san-diego-pm-request@pm.org">san-diego-pm-request@pm.org</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:san-diego-pm-owner@pm.org">san-diego-pm-owner@pm.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than "Re: Contents of San-Diego-pm digest..."<br>
<br>
<br>
Today's Topics:<br>
<br>
   1. Re: Perl & MySQL (Bob Kleemann)<br>
   2. Re: Perl & MySQL (Mark Schoonover)<br>
   3. Re: Perl & MySQL (Christopher Hahn)<br>
   4. Re: Perl & MySQL (Randal L. Schwartz)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Wed, 19 Mar 2014 10:05:08 -0700<br>
From: Bob Kleemann <<a href="mailto:rkleeman@energoncube.net">rkleeman@energoncube.net</a>><br>
To: <a href="mailto:allengil@sdf.org">allengil@sdf.org</a><br>
Cc: San Diego Perl Mongers <<a href="mailto:san-diego-pm@pm.org">san-diego-pm@pm.org</a>><br>
Subject: Re: [San-Diego-pm] Perl & MySQL<br>
Message-ID:<br>
        <<a href="mailto:CAO6cO5_ayM263Mufm_EYRHD8KS2vjcLx16On_-biOG0BsnBj6Q@mail.gmail.com">CAO6cO5_ayM263Mufm_EYRHD8KS2vjcLx16On_-biOG0BsnBj6Q@mail.gmail.com</a>><br>
Content-Type: text/plain; charset=ISO-8859-1<br>
<br>
Allen,<br>
<br>
There are several free databases you could use.  If the SQL commands<br>
you've written aren't very MySQL specific, you could translate it to<br>
many other DBs without much difficulty.  If you've got a lot of MySQL<br>
specific extensions to SQL in your commands, then it might be more<br>
difficult.  I'd look at SQLite, and see if that supports your needs.<br>
If not, there are several others that could meet your needs, but it's<br>
hard to say without a better idea of what your applications needs.<br>
<br>
Also, I'm CC'ing the rest of the San Diego Perl Mongers list, as I'm<br>
sure many of them have some more experience moving from MySQL to other<br>
DBs.<br>
<br>
  -- Bob<br>
<br>
On Wed, Mar 19, 2014 at 6:02 AM,  <<a href="mailto:allengil@sdf.org">allengil@sdf.org</a>> wrote:<br>
> Bob,<br>
><br>
> I use Perl & MySQL on my company provided laptop as sort of a day planner.<br>
> It's just something I developed while working on my BSIT. Recently the IT<br>
> Nazis at my company detected MySQL running on it, and demanded that I<br>
> remove it immediately, claiming it was a security threat. I've been using<br>
> this for over 10 years, and having my work history in a relational<br>
> database has been quite helpful in recalling what I did. Do you have any<br>
> suggestions on alternatives that won't require a massive rewrite of my<br>
> code? I have a lot of SQL commands in there, and I would like to leave<br>
> them alone if possible.<br>
><br>
> Thanx,<br>
><br>
> Allen Gilson<br>
><br>
<br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Wed, 19 Mar 2014 10:46:54 -0700<br>
From: Mark Schoonover <<a href="mailto:mark.schoonover@gmail.com">mark.schoonover@gmail.com</a>><br>
To: Bob Kleemann <<a href="mailto:rkleeman@energoncube.net">rkleeman@energoncube.net</a>><br>
Cc: San Diego Perl Mongers <<a href="mailto:san-diego-pm@pm.org">san-diego-pm@pm.org</a>>, <a href="mailto:allengil@sdf.org">allengil@sdf.org</a><br>
Subject: Re: [San-Diego-pm] Perl & MySQL<br>
Message-ID:<br>
        <CANhKybLYbQnRe62Pm9tA8ExziX5MAer7VrngF5yF3j3AdPL=<a href="mailto:dQ@mail.gmail.com">dQ@mail.gmail.com</a>><br>
Content-Type: text/plain; charset="utf-8"<br>
<br>
If you don't need your MySQL instance available to the outside world, just<br>
lock it down to localhost. IIRC, there should be instructions in my.cnf on<br>
how to pin mysqld to localhost:3306 (assuming default port is used).<br>
<br>
<br>
Mark Schoonover<br>
Website: <a href="http://www.ka6wke.net" target="_blank">http://www.ka6wke.net</a><br>
Resume: <a href="http://cv.ka6wke.net" target="_blank">http://cv.ka6wke.net</a><br>
Stack Exchange eBooks: <a href="http://se2go.ka6wke.net" target="_blank">http://se2go.ka6wke.net</a><br>
<br>
<br>
<br>
On Wed, Mar 19, 2014 at 10:05 AM, Bob Kleemann <<a href="mailto:rkleeman@energoncube.net">rkleeman@energoncube.net</a>>wrote:<br>
<br>
> Allen,<br>
><br>
> There are several free databases you could use.  If the SQL commands<br>
> you've written aren't very MySQL specific, you could translate it to<br>
> many other DBs without much difficulty.  If you've got a lot of MySQL<br>
> specific extensions to SQL in your commands, then it might be more<br>
> difficult.  I'd look at SQLite, and see if that supports your needs.<br>
> If not, there are several others that could meet your needs, but it's<br>
> hard to say without a better idea of what your applications needs.<br>
><br>
> Also, I'm CC'ing the rest of the San Diego Perl Mongers list, as I'm<br>
> sure many of them have some more experience moving from MySQL to other<br>
> DBs.<br>
><br>
>   -- Bob<br>
><br>
> On Wed, Mar 19, 2014 at 6:02 AM,  <<a href="mailto:allengil@sdf.org">allengil@sdf.org</a>> wrote:<br>
> > Bob,<br>
> ><br>
> > I use Perl & MySQL on my company provided laptop as sort of a day<br>
> planner.<br>
> > It's just something I developed while working on my BSIT. Recently the IT<br>
> > Nazis at my company detected MySQL running on it, and demanded that I<br>
> > remove it immediately, claiming it was a security threat. I've been using<br>
> > this for over 10 years, and having my work history in a relational<br>
> > database has been quite helpful in recalling what I did. Do you have any<br>
> > suggestions on alternatives that won't require a massive rewrite of my<br>
> > code? I have a lot of SQL commands in there, and I would like to leave<br>
> > them alone if possible.<br>
> ><br>
> > Thanx,<br>
> ><br>
> > Allen Gilson<br>
> ><br>
> _______________________________________________<br>
> San-Diego-pm mailing list<br>
> <a href="mailto:San-Diego-pm@pm.org">San-Diego-pm@pm.org</a><br>
> <a href="http://mail.pm.org/mailman/listinfo/san-diego-pm" target="_blank">http://mail.pm.org/mailman/listinfo/san-diego-pm</a><br>
><br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <<a href="http://mail.pm.org/pipermail/san-diego-pm/attachments/20140319/9afa587a/attachment-0001.html" target="_blank">http://mail.pm.org/pipermail/san-diego-pm/attachments/20140319/9afa587a/attachment-0001.html</a>><br>


<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Wed, 19 Mar 2014 10:50:58 -0700<br>
From: Christopher Hahn <<a href="mailto:xrz1138@gmail.com">xrz1138@gmail.com</a>><br>
To: Mark Schoonover <<a href="mailto:mark.schoonover@gmail.com">mark.schoonover@gmail.com</a>><br>
Cc: <a href="mailto:allengil@sdf.org">allengil@sdf.org</a>, San Diego Perl Mongers <<a href="mailto:san-diego-pm@pm.org">san-diego-pm@pm.org</a>><br>
Subject: Re: [San-Diego-pm] Perl & MySQL<br>
Message-ID:<br>
        <<a href="mailto:CAP9CNRzuYz71D7tRottwGFH_WiPKRGsAajbTC%2Bq63n6K8%2B%2B5yw@mail.gmail.com">CAP9CNRzuYz71D7tRottwGFH_WiPKRGsAajbTC+q63n6K8++5yw@mail.gmail.com</a>><br>
Content-Type: text/plain; charset="iso-8859-1"<br>
<br>
That would beat a network monitor.<br>
<br>
I am not sure what "my company detected MySQL running" means<br>
though, and it could be a company-required app that, along with whatever<br>
else it does, scans the system for installed softwares.<br>
<br>
That would require a switch to an allowed DB.<br>
<br>
...but I love the suggestion, and hope that the company is enlightened.<br>
<br>
Chris<br>
<br>
<br>
On Wed, Mar 19, 2014 at 10:46 AM, Mark Schoonover <<a href="mailto:mark.schoonover@gmail.com">mark.schoonover@gmail.com</a><br>
> wrote:<br>
<br>
> If you don't need your MySQL instance available to the outside world, just<br>
> lock it down to localhost. IIRC, there should be instructions in my.cnf on<br>
> how to pin mysqld to localhost:3306 (assuming default port is used).<br>
><br>
><br>
> Mark Schoonover<br>
> Website: <a href="http://www.ka6wke.net" target="_blank">http://www.ka6wke.net</a><br>
> Resume: <a href="http://cv.ka6wke.net" target="_blank">http://cv.ka6wke.net</a><br>
> Stack Exchange eBooks: <a href="http://se2go.ka6wke.net" target="_blank">http://se2go.ka6wke.net</a><br>
><br>
><br>
><br>
> On Wed, Mar 19, 2014 at 10:05 AM, Bob Kleemann <<a href="mailto:rkleeman@energoncube.net">rkleeman@energoncube.net</a>>wrote:<br>
><br>
>> Allen,<br>
>><br>
>> There are several free databases you could use.  If the SQL commands<br>
>> you've written aren't very MySQL specific, you could translate it to<br>
>> many other DBs without much difficulty.  If you've got a lot of MySQL<br>
>> specific extensions to SQL in your commands, then it might be more<br>
>> difficult.  I'd look at SQLite, and see if that supports your needs.<br>
>> If not, there are several others that could meet your needs, but it's<br>
>> hard to say without a better idea of what your applications needs.<br>
>><br>
>> Also, I'm CC'ing the rest of the San Diego Perl Mongers list, as I'm<br>
>> sure many of them have some more experience moving from MySQL to other<br>
>> DBs.<br>
>><br>
>>   -- Bob<br>
>><br>
>> On Wed, Mar 19, 2014 at 6:02 AM,  <<a href="mailto:allengil@sdf.org">allengil@sdf.org</a>> wrote:<br>
>> > Bob,<br>
>> ><br>
>> > I use Perl & MySQL on my company provided laptop as sort of a day<br>
>> planner.<br>
>> > It's just something I developed while working on my BSIT. Recently the<br>
>> IT<br>
>> > Nazis at my company detected MySQL running on it, and demanded that I<br>
>> > remove it immediately, claiming it was a security threat. I've been<br>
>> using<br>
>> > this for over 10 years, and having my work history in a relational<br>
>> > database has been quite helpful in recalling what I did. Do you have any<br>
>> > suggestions on alternatives that won't require a massive rewrite of my<br>
>> > code? I have a lot of SQL commands in there, and I would like to leave<br>
>> > them alone if possible.<br>
>> ><br>
>> > Thanx,<br>
>> ><br>
>> > Allen Gilson<br>
>> ><br>
>> _______________________________________________<br>
>> San-Diego-pm mailing list<br>
>> <a href="mailto:San-Diego-pm@pm.org">San-Diego-pm@pm.org</a><br>
>> <a href="http://mail.pm.org/mailman/listinfo/san-diego-pm" target="_blank">http://mail.pm.org/mailman/listinfo/san-diego-pm</a><br>
>><br>
><br>
><br>
> _______________________________________________<br>
> San-Diego-pm mailing list<br>
> <a href="mailto:San-Diego-pm@pm.org">San-Diego-pm@pm.org</a><br>
> <a href="http://mail.pm.org/mailman/listinfo/san-diego-pm" target="_blank">http://mail.pm.org/mailman/listinfo/san-diego-pm</a><br>
><br>
<br>
<br>
<br>
--<br>
Realisant mon espoir, je me lance vers la gloire.<br>
Christopher Hahn == <a href="mailto:xrz1138@gmail.com">xrz1138@gmail.com</a><br>
-------------- next part --------------<br>
An HTML attachment was scrubbed...<br>
URL: <<a href="http://mail.pm.org/pipermail/san-diego-pm/attachments/20140319/7a9bcc2b/attachment-0001.html" target="_blank">http://mail.pm.org/pipermail/san-diego-pm/attachments/20140319/7a9bcc2b/attachment-0001.html</a>><br>


<br>
------------------------------<br>
<br>
Message: 4<br>
Date: Wed, 19 Mar 2014 11:35:16 -0700<br>
From: <a href="mailto:merlyn@stonehenge.com">merlyn@stonehenge.com</a> (Randal L. Schwartz)<br>
To: Bob Kleemann <<a href="mailto:rkleeman@energoncube.net">rkleeman@energoncube.net</a>><br>
Cc: San Diego Perl Mongers <<a href="mailto:san-diego-pm@pm.org">san-diego-pm@pm.org</a>>, <a href="mailto:allengil@sdf.org">allengil@sdf.org</a><br>
Subject: Re: [San-Diego-pm] Perl & MySQL<br>
Message-ID: <<a href="mailto:8638iekpej.fsf@red.stonehenge.com">8638iekpej.fsf@red.stonehenge.com</a>><br>
Content-Type: text/plain<br>
<br>
>>>>> "Bob" == Bob Kleemann <<a href="mailto:rkleeman@energoncube.net">rkleeman@energoncube.net</a>> writes:<br>
<br>
>> I use Perl & MySQL on my company provided laptop as sort of a day planner.<br>
>> It's just something I developed while working on my BSIT. Recently the IT<br>
>> Nazis at my company detected MySQL running on it, and demanded that I<br>
>> remove it immediately, claiming it was a security threat.<br>
<br>
Until we understand more about this claim, replacing a database with<br>
another database might not suffice.  If the problem is one of corporate<br>
control, there may be no rationality involved, and in which case, no<br>
rational solution will overcome the impenetrable bureaucracy.<br>
<br>
--<br>
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - <a href="tel:%2B1%20503%20777%200095" value="+15037770095">+1 503 777 0095</a><br>
<<a href="mailto:merlyn@stonehenge.com">merlyn@stonehenge.com</a>> <URL:<a href="http://www.stonehenge.com/merlyn/" target="_blank">http://www.stonehenge.com/merlyn/</a>><br>
Perl/Unix consulting, Technical writing, Comedy, etc. etc.<br>
Still trying to think of something clever for the fourth line of this .sig<br>
<br>
<br>
------------------------------<br>
<br>
Subject: Digest Footer<br>
<br>
_______________________________________________<br>
San-Diego-pm mailing list<br>
<a href="mailto:San-Diego-pm@pm.org">San-Diego-pm@pm.org</a><br>
<a href="http://mail.pm.org/mailman/listinfo/san-diego-pm" target="_blank">http://mail.pm.org/mailman/listinfo/san-diego-pm</a><br>
<br>
------------------------------<br>
<br>
End of San-Diego-pm Digest, Vol 119, Issue 2<br>
********************************************<br>
</blockquote></div><br></div>