bugGNU Parallel - Bugs: bug #31677, sql: a dburi and alias perl module

 
 

bug #31677: sql: a dburi and alias perl module

Submitter:  None
Submitted:  Tue 16 Nov 2010 10:13:33 PM UTC
   
 
Category:  None Severity:  3 - Normal
Priority:  5 - Normal Item Group:  None
Status:  None Privacy:  Public
Assigned to:  None Open/Closed:  Open
* Mandatory Fields

Post a Comment

Add a New Comment Rich Markup
   

Discussion

Tue 16 Nov 2010 10:13:33 PM UTC, original submission:  

Gnu Sql consist of several parts:

  * a 'dburi' parser
  * an 'alias' sql-vendor parser
  * and some command line gluing it all together

Could the dburi and the alias part come in a separate module so it can be used with my own perl scripts?

I expect my script to start with:
 use DBIuri;
 my $alias = ":psql8";
 my $dbh = DBI->connect( $alias );

or it could just be a converter like:
 use DBI;
 require 'dburi.pl';
 my %dburi = dburi( dburi_alias(shift) );
 my $dbh = DBI->connect( $dburi{'dbiconnect'} );
 my $sth = $dbh->prepare( $dburi{'query'} );
(maybe a little more elegant than that, if possible)

/hans

Anonymous

 

Attached Files

This item currently has no attached files.

(Note: upload size limit is set to 4.0MiB, after insertion of the required escape characters.)

Attach Files:
   
   
Comment:
   

 

Dependencies

This item does not depend on any other items.

No items depend on this one.

 

Mail Notification Carbon-Copy List

 

Votes

There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.

Only logged-in users can vote.

 

History

No changes have been made to this item

Back to the top

Powered by Savane 3.16-ed84.
Corresponding source code