Update of /cvsroot/monetdb/clients/src/perl/MonetDB-CLI
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv19561/MonetDB-CLI

Modified Files:
      Tag: Clients_1-20
        CLI.pm 
Log Message:
mapi_connect needs a database argument for some time now, ie time to bring
perl in line.


Index: CLI.pm
===================================================================
RCS file: /cvsroot/monetdb/clients/src/perl/MonetDB-CLI/CLI.pm,v
retrieving revision 1.2
retrieving revision 1.2.6.1
diff -u -d -r1.2 -r1.2.6.1
--- CLI.pm      3 Jan 2007 12:18:11 -0000       1.2
+++ CLI.pm      20 Oct 2007 19:14:19 -0000      1.2.6.1
@@ -24,7 +24,7 @@
 
   use MonetDB::CLI();
 
-  my $cxn = MonetDB::CLI->connect( $host, $port, $user, $pass, $lang );
+  my $cxn = MonetDB::CLI->connect( $host, $port, $user, $pass, $lang, $db );
 
   my $req = $cxn->query('select * from env');
   while ( my $cnt = $req->fetch ) {
@@ -44,7 +44,7 @@
 
 =head2 The C<connect()> method
 
-  my $cxn = MonetDB::CLI->connect( $host, $port, $user, $pass, $lang );
+  my $cxn = MonetDB::CLI->connect( $host, $port, $user, $pass, $lang, $db );
 
 This method tries to load an implementation module from C<@Modules> and
 delegates to the C<connect()> method of the first successful loaded module.


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Monetdb-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-checkins

Reply via email to