RFC - SQL::ObjectModel - to SQL what a DOM is to XML

2003-05-31 Thread Darren Duncan
, and to keep everyone in the loop; I would do the same. Have a good day. -- Darren Duncan

Re: RFC - SQL::ObjectModel - to SQL what a DOM is to XML

2003-06-02 Thread Darren Duncan
if there were other suggestions that might work better. Thanks much. -- Darren Duncan On Sun, 1 Jun 2003, Ron Savage wrote: Great idea. Go for it! I'm using DBIx::SQLEngine at the moment, as a framework manager so to speak, but am happy to see other ways of working. -- Cheers Ron Savage, [EMAIL

ignore this - testing new email connection

2004-12-25 Thread Darren Duncan
you can ignore this

RE: Evaluated require $database not found.

2004-12-26 Thread Darren Duncan
can't find module in @INC error eval require $database;; $@ and die $@; Please report to the list whether that solves your problem. -- Darren Duncan

Re: using one DBI+DBD to implement another DBD

2005-01-06 Thread Darren Duncan
an application. I expect that a lot of people would want to use the module using its own API, which does not take SQL strings or otherwise resemble the DBI interface at all except for some shared structural design concepts. Thanks for your help. -- Darren Duncan

Re: make Makefile.PL

2005-01-12 Thread Darren Duncan
saavy developers. -- Darren Duncan

Re: Searchable archive for the DBI mailing list?

2005-01-24 Thread Darren Duncan
link to get to this list's archives. It's not searchable yet, but this is better than nothing. -- Darren Duncan

Re: Discovery of unique constraints using Catalog Methods

2005-02-09 Thread Darren Duncan
constraints in any database products to have implied indexes, since an index is required to enforce a constraint in any reasonable amount of time. -- Darren Duncan

ANNOUNCE: SQL-Routine/Rosetta developer release #2 - in Perl 6 too

2005-04-04 Thread Darren Duncan
2005-04-03 Darren Duncan [EMAIL PROTECTED] -- I am now pleased to announce the second developer release of my Rosetta rigorous database portability library, currently featuring the SQL::Routine module. (Considering the huge number of changes

new emulation experiment - module on module

2005-04-04 Thread Darren Duncan
, at least to answer potential questions on how their modules work, is appreciated. If you have any preferences for which modules I tackle first, regardless of whether you wrote them, then please tell me and I'll try to accomodate you. Thank you and have a good day. -- Darren Duncan

Re: new emulation experiment - module on module

2005-04-05 Thread Darren Duncan
At 4:51 AM -0700 4/5/05, Jeff Zucker wrote: Darren Duncan wrote: The first module I'll attempt this with is SQL::Statement. I'm just in the middle of a spate of releases of this module (two in the last two weeks and another coming in a day or two) after an intense several months of development

Re: how to get datatype of columns of a table in perl script

2005-04-14 Thread Darren Duncan
the normal tables. A great introspection feature. -- Darren Duncan

Re: Installing SQL-Statement 1.13 on AIX

2005-04-19 Thread Darren Duncan
for A require B, and the tests for B require A. -- Darren Duncan

ANNOUNCE: SQL-Routine 0.59 (and Rosetta 0.44)

2005-04-22 Thread Darren Duncan
2005-04-22 Darren Duncan [EMAIL PROTECTED] -- Version 0.59 of SQL::Routine (SRT), a fully atomic and portable abstract syntax tree to define any database tasks, has been released on CPAN. http://search.cpan.org/dist/SQL-Routine/ This release

ANNOUNCE: SQL-Routine 0.60

2005-04-26 Thread Darren Duncan
2005-04-25 Darren Duncan [EMAIL PROTECTED] -- Version 0.60 of SQL::Routine (SRT), a fully atomic and portable abstract syntax tree to define any database tasks, has been uploaded to CPAN; it should appear on your favorite mirror within the next

ANNOUNCE: SQL-Routine-SQLBuilder 0.18 (and SQL-Routine 0.62)

2005-05-13 Thread Darren Duncan
2005-05-13 Darren Duncan [EMAIL PROTECTED] -- Special Friday the 13th Release! Version 0.62 of SQL::Routine (SRT), a fully atomic and portable abstract syntax tree to define any database tasks, has been uploaded to CPAN; it should appear on your

ANNOUNCE: SQL-Routine 0.63

2005-06-01 Thread Darren Duncan
2005-06-01 Darren Duncan [EMAIL PROTECTED] -- Version 0.63 of SQL::Routine (SRT), a fully atomic and portable abstract syntax tree to define any database tasks, has been uploaded to CPAN; it should appear on your favorite mirror within the next

emulating DBI over Rosetta

2005-06-09 Thread Darren Duncan
applications to Perl 6 and/or Parrot later can also be assisted by using them. Any feedback or questions or offers of assistence are welcome. Have a good day. -- Darren Duncan

Re: DBI v2 - The Plan and How You Can Help

2005-07-04 Thread Darren Duncan
want, and you can run init() prior to forking without trouble. What I've said in this email is not exhaustive and I may add or amend items later; but, its a good start. Feedback is welcome of course. Thank you. -- Darren Duncan

Re: DBI v2 - The Plan and How You Can Help

2005-07-04 Thread Darren Duncan
driver names are quite short already, so its not like abbreviations are necessary. -- Darren Duncan

Re: DBI v2 - The Plan and How You Can Help

2005-07-05 Thread Darren Duncan
here, so do as you will. -- Darren Duncan

Re: DBI v2 - The Plan and How You Can Help

2005-07-08 Thread Darren Duncan
are the norm. Having this feature allows for more elegant yet fast generated SQL. And even speed aside, it gives users some more flexability of how they want to organize their programs. Darren Duncan again: Each DBI driver can worry less about that its input is correct and focus more on its

Re: DBI v2 - The Plan and How You Can Help

2005-07-09 Thread Darren Duncan
be met by the actual DBMS that Perl + DBI needs to work with. What you say is fair enough, but I never proposed anything impossible or difficult; everything that I am proposing here is easy and simple. -- Darren Duncan

Re: DBI v2 - The Plan and How You Can Help

2005-07-09 Thread Darren Duncan
. -- Darren Duncan

Re: DBI v2 - The Plan and How You Can Help

2005-07-09 Thread Darren Duncan
At 1:22 AM -0700 7/9/05, Jonathan Leffler wrote: On 7/4/05, Darren Duncan mailto:[EMAIL PROTECTED][EMAIL PROTECTED] wrote: 5. All details used to construct a connection handle should be completely decomposed rather than shoved into an ungainly data source. Examples of what should be distinct

Re: DBI v2 - The Plan and How You Can Help

2005-07-09 Thread Darren Duncan
many levels of hierarchy there can be with a database; eg, a server has 1+ databases, each of which has 1+ catalogs (and presumably each of those has 1+ schemas and each of those 1+ tables and other schema objects). I will probably find it helpful when I plan various DBI-using tasks. -- Darren

Re: DBI v2 - The Plan and How You Can Help

2005-07-10 Thread Darren Duncan
. If we have to use the OUT/INOUT parameter thing anyway, then a DBI interface akin to bind_param(), or a new $sth.get_out_param() would work to get the result. With no separate object for results required. -- Darren Duncan

Re: DBI v2 - The Plan and How You Can Help

2005-07-10 Thread Darren Duncan
could not do with a traditional bind_param() etc since the whole thing won't fit in RAM at once. -- Darren Duncan

Re: DBI v2 - The Details - :name for placeholders

2005-07-10 Thread Darren Duncan
in reference documentation? -- Darren Duncan

Re: DBI v2 - The Plan and How You Can Help

2005-07-11 Thread Darren Duncan
, because those specify a versioned API which continues to exist as a wrapper. See http://arstechnica.com/reviews/os/macosx-10.4.ars/4 for what I'm talking about. However it's done, I'm thinking something akin to that would be good for DBI. -- Darren Duncan

Re: DBI v2 - The Plan and How You Can Help

2005-07-11 Thread Darren Duncan
be able to port the subclass to DBIv2, without any additional burden on DBI developers. I accept your challenge. -- Darren Duncan

Re: Announce: BNF Grammars for SQL-92, SQL-99 and SQL-2003

2005-07-16 Thread Darren Duncan
-noncore-features.html , this item: 206 T434 GROUP BY DISINCT The word DISTINCT is spelled wrong. I don't know how big an issue it is, since that isn't part of the BNF portion. -- Darren Duncan

RFC on other database wrapper modules

2005-07-19 Thread Darren Duncan
the aggregated responses on the forum anyway. While you can name names in your responses, I will not be naming any particular modules you bring up in my talk, but just talk about common issues. Thank you in advance for any help. -- Darren Duncan

RFC on other database wrapper modules

2005-07-19 Thread Darren Duncan
the aggregated responses on the forum anyway. While you can name names in your responses, I will not be naming any particular modules you bring up in my talk, but just talk about common issues. Thank you in advance for any help. -- Darren Duncan

Re: RFC on other database wrapper modules

2005-07-20 Thread Darren Duncan
Thanks for the 2 responses I got for this email. They are aggregated below for your perusal. Next I will go and write my Lightning Talk. -- Darren Duncan -- At 7:05 AM -0400 7/19/05, John Siracusa wrote: On 7/19/05 5:05 AM, Darren Duncan

DBI BOF at OSCON 2005

2005-07-21 Thread Darren Duncan
, or whatever wrapper modules, or whatever attendees want, really. -- Darren Duncan -- Title of proposed BOF: Describe the people who would be interested in attending this BOF: Which evenings(s) are you available to host your BOF? Full

RFC - my Lightning Talk for OSCON 2005

2005-07-22 Thread Darren Duncan
+ summary on July 22nd Friday (tomorrow), which is to qualify the talk; the speech text can be edited up to OSCON itself, though I prefer to get the bulk of it done asap. Thank you all in advance. -- Darren Duncan

Re: RFC - my Lightning Talk for OSCON 2005

2005-07-22 Thread Darren Duncan
previous statement, I may try to have some visuals after all, rather than this being all spoken. Thank you. -- Darren Duncan

Re: RFC - my Lightning Talk for OSCON 2005

2005-07-22 Thread Darren Duncan
priority. But colour me optimistic. -- Darren Duncan P.S. No one should actually try using Rosetta until I announce developer release #3, which will hopefully be before OSCON; the end-to-end functionality won't do anything useful until then, even though 90% of the pipe is complete now.

RE: DBIx::Recordset and Oracle

2005-07-26 Thread Darren Duncan
which will serve their needs best to make that decision. -- Darren Duncan

RE: DBIx::Recordset and Oracle

2005-07-27 Thread Darren Duncan
with WHERE down to, say 1000 rows which are the ones that get paginated. I suspect this won't be necessary with newer Oracles, since the SQL:2003 standard includes a window clause, part of which defines pagination I think. -- Darren Duncan

Re: [Catalyst] DBIx-Class list, cdbi-talk closure (fwd)

2005-07-29 Thread Darren Duncan
, and he asked me to forward this following extra information to dbi-users. -- Darren Duncan Date: Fri, 29 Jul 2005 03:40:42 +0100 From: Matt S Trout [EMAIL PROTECTED] On Thu, Jul 28, 2005 at 06:45:03PM -0700, Darren Duncan wrote: FYI, I noticed your

Re: DBI v2 - The Plan and How You Can Help

2005-08-16 Thread Darren Duncan
. -- Darren Duncan

ANNOUNCE: Rosetta/SQL-Routine developer release #3

2005-09-10 Thread Darren Duncan
2005-09-10 Darren Duncan [EMAIL PROTECTED] -- I am now pleased to announce the third developer release of my Rosetta rigorous database portability library, currently featuring the SQL::Routine module. (For reference, the second developer

Re: ANNOUNCE:: DBIx::MyParse 0.20

2005-09-21 Thread Darren Duncan
. -- Darren Duncan

Fwd: Announcing MySQL 5.0 Release Candidate

2005-09-26 Thread Darren Duncan
on your tables and such; meta-data being something that lots of DBI wrapper modules need to operate. -- Darren Duncan Date: Mon, 26 Sep 2005 19:41:07 +0300 From: Kaj Arnö [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Announcing MySQL 5.0 Release Candidate Dear user

ANNOUNCE: reboot of Rosetta/SQL-Routine development, in Perl 6

2005-09-30 Thread Darren Duncan
2005-09-30 Darren Duncan [EMAIL PROTECTED] -- I would like to acknowledge that, despite all the good things that have come out of it, I have had some significant problems in regards to the past development of my Rosetta rigorous database

Re: Announce: JDBC 0.01 (Yes, that's Java JDBC)

2005-10-05 Thread Darren Duncan
year be an appropriate discussion place for this? Or would that only be used after the JDBC-inspired discussion ends? -- Darren Duncan

Re: What's the best free DB for a web-based app?

2005-11-29 Thread Darren Duncan
writing processes may be slow, though, since only one active writer can access a SQLite database at once. SQLite is also public domain, which is about as liberty as you can get. -- Darren Duncan

RE: [cgiapp] Best free DB for a web-based Perl app response results...

2005-12-01 Thread Darren Duncan
due to SQLite being one of the strongest movers and benefits to the open source community. So some criticism of SQLite is warranted, such a scalability with lots of writers, but not what you said. -- Darren Duncan

RFC: renaming SQL::Routine out of SQL

2006-01-06 Thread Darren Duncan
. -- Darren Duncan P.S. The chosen names would be used for and identical in the perl 5 and perl 6 versions of this.

solved the RFC on SQL::Routine; new direction planned

2006-01-06 Thread Darren Duncan
think they would be better than Rosetta. Thank you. -- Darren Duncan

Re: solved the RFC on SQL::Routine; new direction planned

2006-01-09 Thread Darren Duncan
Rosetta to something else in the future, though there's no real impetus to do so now. -- Darren Duncan

Re: extra dependancies vs. testability?

2006-01-10 Thread Darren Duncan
bundle third party things like SQLite, unless your distribution is private/proprietary and the recipients aren't going to CPAN. -- Darren Duncan

ANNOUNCE: retro Rosetta for Friday the 13th

2006-01-13 Thread Darren Duncan
2006-01-13 Darren Duncan [EMAIL PROTECTED] -- For this special day of Friday the Thirteenth of 2006, I would like to announce one last set of releases for the pre-rewrite Rosetta database access framework. This retroactive release (which you

Re: Future versions of DBI to require perl = 5.8

2006-01-27 Thread Darren Duncan
, I can speak at least for Mac OS X that the first version bundling 5.8.x, Panther, bundled 5.8.1 (rc3), so something requiring 5.8.1 will agree to run on it. I currently use 5.8.1 as the declared minimum in my modules. -- Darren Duncan

Re: Future versions of DBI to require perl = 5.8

2006-01-27 Thread Darren Duncan
At 10:51 AM +1100 1/28/06, Ron Savage wrote: On Fri, 27 Jan 2006 14:20:31 -0800, Darren Duncan wrote: Moreover, I suggest you go a bit further and say that 5.8.1/5.008001 is the minimum version, rather than 5.8.0; no one should actually be using 5.8.0 given all the bugs it has

Re: Column names have spaces in them!!!

2006-02-01 Thread Darren Duncan
, at least with databases conforming to the SQL standard of delimited identifiers; some products may use alternate delimiters. Chopping out the spaces and stuff is only crippling yourself. -- Darren Duncan

Re: Column names have spaces in them!!!

2006-02-01 Thread Darren Duncan
sentences; rather, just about the same lengths as are valid for folder or file names; just they should be allowed to contain spaces and such. -- Darren Duncan

ANNOUNCE: first post-rewrite Rosetta release (v0.720.0)

2006-02-02 Thread Darren Duncan
2006-02-01 Darren Duncan [EMAIL PROTECTED] -- I am pleased to announce the first CPAN release of the second major code base (started on 2005-10) of the Rosetta database access framework, v0.720.0, which is available now in synchronized native

a new Rosetta snapshot is released (v0.722.0)

2006-03-20 Thread Darren Duncan
are in the README, as they can be several weeks newer than CPAN releases. Enjoy! -- Darren Duncan

RFC: proposed QDRDBMS temporary module

2006-09-15 Thread Darren Duncan
of feedback I can get short term is what to name the module, knowing that it is meant to be temporary. I thought quick and dirty would work well enough for the purpose, like it did for QDOS back in the '80s. Thank you. -- Darren Duncan

Re: MySQL upgrade caused Perl coredumps...

2006-11-04 Thread Darren Duncan
the switch. -- Darren Duncan

Re: DBD::mysql 4.00 released!

2006-12-24 Thread Darren Duncan
is the *perfect* time for you to move along to that path. -- Darren Duncan

RFC: host for new m-l for a DBMS module

2007-01-18 Thread Darren Duncan
later if desired. Any feedback as to where or who I should best ask for a list host, or offers for said, are appreciated. Thank you in advance. -- Darren Duncan P.S. I'll also want to setup a designated IRC channel for the project also, though I anticipate that those will be trivial

ANNOUNCE: first email forums for QDRDBMS are active

2007-01-21 Thread Darren Duncan
telling you about the lists now, so that when someone wants to make a post, there would be a fair number of people in position to read it. Thank you in advance for any interest you may have in QDRDBMS. -- Darren Duncan

Re: ANNOUNCE: DBI 1.54 RC5 - including cool new DBD::Gofer stateless proxy

2007-02-18 Thread Darren Duncan
just gets you RC4 again. -- Darren Duncan

Re: ANNOUNCE: Apache-Status-DBI-v1.0.0.tar.gz

2007-03-30 Thread Darren Duncan
and should be avoided, especially for new projects that don't have prior releases in 1.xx format. -- Darren Duncan

Re: ANNOUNCE: DBI 1.55 RC3

2007-05-02 Thread Darren Duncan
At 10:32 PM +0100 5/1/07, Tim Bunce wrote: You can download it from http://homepage.mac.com/tim.bunce/.Public/perl/DBI-1.55-RC3.tar.gz All DBI tests successful or skipped, under Perl 5.8.8 with no threads, GCC 4.0.1, under Mac OS X 10.4.9 PPC. -- Darren Duncan

ANNOUNCE - Muldis::DB v0.0.0 released, in p5+p6

2007-06-21 Thread Darren Duncan
if you're not sure about appropriateness. Thank you in advance. -- Darren Duncan

Re: Cross-Database query engine?

2007-07-24 Thread Darren Duncan
database servers? If not, I may well write one ... Please give more detail of what you actually want to do, perhaps with an example, so it is easier to answer the question. -- Darren Duncan

Re: Cross-Database query engine?

2007-07-24 Thread Darren Duncan
, which is in the current 5.0.x series and later; tables of that engine are proxies for tables under some other server. Not all SQL features are supported with them, but the ones that are may be enough. http://dev.mysql.com/tech-resources/articles/mysql-federated-storage.html -- Darren Duncan

Re: Cross-Database query engine?

2007-07-24 Thread Darren Duncan
-to-be, by way of its native paradigm that makes all data stores look like they're all in one query environment, which is analagous to Perl's tie mechanism making foreign variables look like native local variables. -- Darren Duncan

most common kinds of cross-database queries

2007-08-01 Thread Darren Duncan
normally used for all the databases, or are they more likely to be different products driving each one? For those replying, please just answer the question in a generic sense for now, without regard for particulars of my project. Thank you. -- Darren Duncan

RE: Please take a moment...

2007-08-06 Thread Darren Duncan
worth doing. -- Darren Duncan

help wanted - example database schemas and queries

2007-10-21 Thread Darren Duncan
them as examples for live presentations I give (the first being on the 23rd). I also need to make a test suite sooner rather than later, and these examples could also help with that to some extent. Thank you in advance. -- Darren Duncan

RFC: trimming my Muldis D talk for OSCON, PGDay next week

2008-07-16 Thread Darren Duncan
yet); if this applies to you, then you probably already hang out there, or you can ask me where. Thank you in advance for any quick help; it is greatly appreciated. -- Darren Duncan

ANN - SQLite 3.6.8 adds nested transactions

2009-01-12 Thread Darren Duncan
, you should exploit any native nested transaction support of any other DBMS you are using. -- Darren Duncan

ANNOUNCE - Set::Relation version 0.6.0 for Perl 5

2009-02-10 Thread Darren Duncan
and in improving it and testing it will later feed back into implementing Muldis::Rosetta, whose design overlaps. It is very helpful to me if Set::Relation can be made the best it can be, as soon as possible, so to make said feedback more timely. Thank you and have a good day. -- Darren Duncan

ANNOUNCE - Set::Relation versions 0.8.0 and 0.9.0 for Perl 5

2009-03-25 Thread Darren Duncan
. -- Darren Duncan

ANN - DBD::SQLite version

2009-03-27 Thread Darren Duncan
it for that migration. Please do not reply to me directly with your responses. Instead send them to the forums or file with RT as is appropriate. Thank you. -- Darren Duncan

[Fwd: [ANNOUNCE] == Postgres Weekly News - April 01 2009 ==]

2009-04-01 Thread Darren Duncan
This is not Perl specific, but probably something any current or possible users of Postgres should know as they plan their futures. -- Darren Duncan Original Message Subject: [ANNOUNCE] == Postgres Weekly News - April 01 2009 == Date: Wed, 1 Apr 2009 01:44:32 -0700 From: David

ANN - DBD::SQLite version 1.20

2009-04-07 Thread Darren Duncan
::SQLite are expected to come out separately from and after the stabilized switch to the amalgamation sources. Please do not reply to me directly with your responses. Instead send them to the forums or file with RT as is appropriate. Thank you. -- Darren Duncan

FYI - modern Muldis D code examples

2009-04-08 Thread Darren Duncan
. -- Darren Duncan == SQL: SELECT 1 Muldis D Text: function func1 (NNInt --) { main { 1; } } or: function func1 (Relation --) { main { Relation:{ { attr1 = 1 } }; } } == SQL: SELECT NOW() AS time

Re: FYI - modern Muldis D code examples

2009-04-09 Thread Darren Duncan
example code is meant to be a more literal translation of what the SQL is saying. If the SQL spelled out columns to return, so does my example. If the SQL said return all columns, then mine doesn't spell them out. Anyway, thank you for your time. -- Darren Duncan == SQL: SELECT 1

[Fwd: [ANNOUNCE] PostgreSQL 8.4 Beta Released]

2009-04-15 Thread Darren Duncan
this. -- Darren Duncan Original Message Subject: [ANNOUNCE] PostgreSQL 8.4 Beta Released Date: Wed, 15 Apr 2009 13:41:08 -0300 (ADT) From: Marc G. Fournier scra...@postgresql.org To: pgsql-annou...@postgresql.org The first beta of Version 8.4 of the world's most advanced open

ANN - DBD::SQLite version 1.24_01 - amalgamation

2009-04-22 Thread Darren Duncan
. Please do not reply to me directly with your responses. Instead send them to the forums or file with RT as is appropriate. Thank you. -- Darren Duncan

Re: Support for XA

2009-06-18 Thread Darren Duncan
commit? Depending on the reason for failure, it could still be done when using something like a two-phase commit protocol. This isn't a 100% solution, but for the situations where it works you don't need to undo the succeeding databases. -- Darren Duncan

Re: Perl 6 DBI API ideas

2009-07-31 Thread Darren Duncan
this in my Text::RecordParser module: http://search.cpan.org/dist/Text-RecordParser/lib/Text/RecordParser/Object.pm That's all I can think of for now. ky -- Darren Duncan

ANN : new SQL builder module starting development

2009-08-23 Thread Darren Duncan
license as Parrot and Rakudo, and which is the modern 'same version as Perl' license. Thank you. -- Darren Duncan

test DBD::SQLite 1.26_05 - foreign keys!

2009-10-15 Thread Darren Duncan
developer). Please do not reply to me directly with your responses. Instead send them to the forums or file with RT as is appropriate. Thank you. -- Darren Duncan P.S. DBD::SQLite has at least 1 known bug, also in version 1.25, with regard to full-text search (FTS3); there is an included new

test DBD::SQLite 1.26_06 please

2009-10-28 Thread Darren Duncan
with your responses. Instead send them to the forums or file with RT as is appropriate. Thank you. -- Darren Duncan

Re: DBI for Perl 5.6.1

2009-11-05 Thread Darren Duncan
probably support Perl 5.6. -- Darren Duncan

ANN - DBD::SQLite 1.27 - test it!

2009-11-23 Thread Darren Duncan
with your responses. Instead send them to the forums or file with RT as is appropriate. Thank you. -- Darren Duncan

Re: Which SQLite DBD To Use

2010-03-18 Thread Darren Duncan
the indicated if(0) to if(1) in the Makefile.PL. -- Darren Duncan

Re: spammer on dbi-users

2010-03-25 Thread Darren Duncan
seen a spam on a Perl list save for this handful. -- Darren Duncan Neil Beddoe wrote: They'll only use another address if you do. There are a lot of these originating from Hotmail accounts at the moment. -Original Message- From: jeff [mailto:j...@roqc.no] Sent: 25 March 2010 16:57

ANNOUNCE - Muldis D version 0.129.1

2010-05-19 Thread Darren Duncan
. This project and ancillary projects are a serious endeavor that I intend to commercially support over the long term, and others can do likewise. Good day. -- Darren Duncan

Re: How to use perl dbi to create a database

2010-06-29 Thread Darren Duncan
to the previous sentence. Or if there is no cluster, then you could invoke the 'initdb' program to create one, then start the server, and connect, etc. All of this you can do within Perl of course. If your DBMS is something else, then I don't know the answer offhand. -- Darren Duncan

test PostgreSQL 9.0 rc1

2010-08-31 Thread Darren Duncan
and needs testing, this being a minor update.) -- Darren Duncan Original Message Subject: [ANNOUNCE] PostgreSQL 9.0 Release Candidate 1 Date: Tue, 31 Aug 2010 09:05:01 -0700 From: Josh Berkus j...@postgresql.org To: pgsql-annou...@postgresql.org The first release candidate

[RFC] SQL::AST (SQL Abstract Syntax Tree) - DBI related

2003-08-14 Thread Darren Duncan
in advance for any feedback. -- Darren Duncan P.S. For your convenience, below is a copy of some pod from SQL::ObjectModel v0.03, which describes it. It will be updated/rewritten after the rename. - This Perl 5 object class is intended to be a powerful but easy to use

  1   2   >