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
Item Group:  None Status:  None
Privacy:  Public Assigned to:  None
Open/Closed:  Open
* Mandatory Fields

Add a New Comment Rich Markup
   

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

 

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

Attach Files:
   
   
Comment:
   

No files currently attached

 

Depends on the following items: None found

Items that depend on this one: None found

 

CC list is empty

 

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.

 

No changes have been made to this item

Back to the top

Powered by Savane 3.13-d3ae.
Corresponding source code