active questions tagged dbi - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T09:14:34Z http://stackoverflow.com/feeds/tag/dbi http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1822109/how-can-i-insert-hash-values-in-columns-with-perls-dbi 0 How can I insert hash values in columns with Perl's DBI? birdy 2009-11-30T20:09:42Z 2009-12-01T18:38:54Z <p>I have a hash and I am trying to insert its values into database. Hash is defined as follows:</p> <pre><code>my %hash = ( 1 =&gt; 'First Word', 2 =&gt; 'Second Word is correct', 0 =&gt; 'Third word does not exist', ); </code></pre> <p>I do not know how to insert values in a database using hashes. I notice my question is similar to <a href="http://stackoverflow.com/questions/1798861/how-do-i-insert-values-from-a-hash-into-a-database-using-perls-dbi-module">this</a> question. But, none of the answers seem to be correct. On using any of the listed answers, the values in hash are not inserted, instead reference to hash is inserted i.e. <code>ARRAY(0x9e63b30)</code>. But when I <code>print Dumper @values</code>, values get printed and not reference values. </p> <p>Any suggestions on how to insert values and not their reference? And, what is going wrong in the solutions listed in answers to <a href="http://stackoverflow.com/questions/1798861/how-do-i-insert-values-from-a-hash-into-a-database-using-perls-dbi-module">question</a>.</p> <p>@values is defined same as <a href="http://stackoverflow.com/questions/1798861/how-do-i-insert-values-from-a-hash-into-a-database-using-perls-dbi-module">this</a> question i.e.</p> <pre><code>my @values = values %hash; </code></pre> <p>Edit: Db structure:</p> <p>T1:</p> <pre><code>sid sentence 1 First Word 2 Second Word is correct 0 Third word does not exist </code></pre> <p>in above sid is <code>keys</code> of hash and sentence is <code>values</code> of hash.</p> <p>this is what I tried out (it is one of the answers to <a href="http://stackoverflow.com/questions/1798861/how-do-i-insert-values-from-a-hash-into-a-database-using-perls-dbi-module">question</a>):</p> <pre><code>my @keys = keys %hash; my @values = values %hash; my $sth = $dbh-&gt;prepare("INSERT INTO T1(sid, sentence) VALUES (?,?);"); $sth-&gt;execute_array({},\@keys, \@values); </code></pre> <p>again, while inserting <code>@values</code> reference values are getting inserted.</p> <p>EDIT:</p> <p>_ <em>OUTPUT</em> _</p> <pre><code>$VAR1 = 'First Word'; $VAR2 = 'Third word does not exist'; $VAR3 = 'Second Word is correct'; </code></pre> <p>_ <em>CODE</em> _ this is how I am inserting values into %hash</p> <pre><code>my $x=0; foreach my $file(@files){ if ($file =~ /regex/){ push(@{$hash{$x}}, "$1 $2 $3 $4 $5 $6 $7"); } elsif ($file =~ /regex/){ push(@{$hash{$x}}, "$1 $2 $3 $4 $5 $6"); } elseif ($file =~ /Hs_(.+)_(.+)_(.+)_(.+)_(.+)_W.+txt/){ push (@{$hash{$x}}, "$1 $2 $3 $4 $5"); } $x++; } </code></pre> http://stackoverflow.com/questions/796593/can-i-display-the-output-of-mysql-using-cgi 1 Can I display the output of MySQL using CGI? dhiv 2009-04-28T07:16:30Z 2009-11-29T17:12:26Z <p>HI, I have written a program in Perl using the DBI module. Can I display the output of MySQL using CGI? If so please help me.</p> <p>program:</p> <pre><code>#!/usr/bin/perl -w use DBI; print "Content-type:text/html\n\n"; $db_handle = DBI-&gt;connect("dbi:mysql:database=CYP1B1;host=localhost:192.168.3.93;") or die "Couldn't connect to database: $DBI::errstr\n"; $sql = "SELECT * FROM BPCG"; $statement = $db_handle-&gt;prepare($sql) or die "Couldn't prepare query '$sql': $DBI::errstr\n"; $statement-&gt;execute() or die "Couldn't execute query '$sql': $DBI::errstr\n"; print "Location\tNucleotidechange\tAminoacidchange\n"; while(($Location,$Nucleotidechange,$Aminoacidchange)=$statement-&gt;fetchrow_array()) { print "$Location $Nucleotidechange $Aminoacidchange \n"; } $db_handle-&gt;disconnect(); </code></pre> http://stackoverflow.com/questions/1805487/how-do-i-query-a-view-from-sql-server-with-perl-and-dbdodbc 0 How do I query a view from SQL server with Perl and DBD::ODBC? jeffkolez 2009-11-26T20:19:31Z 2009-11-27T14:07:54Z <p>I can query the SQL server DB fine. The problem happens when I try and query a view.</p> <p>I'm not trying to do anything crazy:</p> <pre><code> $sql = 'select * from location_v'; $stj = $db_destination-&gt;prepare($sql); </code></pre> <p>It keeps dying on the prepare line. Here's what I'm getting back (which isn't all that useful):</p> <pre><code>DBD::ODBC::db prepare failed: (DBD: st_prepare/SQLPrepare err=-1) </code></pre> <p>Shouldn't views be handled exactly the same as a table? Thanks in advance.</p> http://stackoverflow.com/questions/1798861/how-do-i-insert-values-from-a-hash-into-a-database-using-perls-dbi-module 0 How do I insert values from a hash into a database using Perl's DBI module? shubster 2009-11-25T18:07:01Z 2009-11-26T01:12:36Z <p>I need to insert values from a hash into a database. Following is the code template I have to insert values in table1 column <em>key</em> and <em>value</em>:</p> <pre><code>use DBI; use strict; %hash; #assuming it already contains desired values my $dbh = DBI-&gt;connect( "dbi:Sybase:server=$Srv;database=$Db", "$user", "$passwd" ) or die sprintf 'could not connect to database %s', DBI-&gt;errstr; my $query= "Insert INTO table1(key, values) VALUES (?,?) "; my $sth = $dbh-&gt;prepare($query) or die "could not prepare statement\n", $dbh-&gt;errstr; $sth-&gt; execute or die "could not execute", $sth-&gt;errstr; </code></pre> <p>I know how to insert values using array i.e use <code>execute_array()</code>, but do not know how to insert values present in <code>%hash</code> in table1.</p> <p>Any suggestions? </p> http://stackoverflow.com/questions/1772089/how-can-i-select-multiple-rows-using-parameters-from-an-array-in-perls-dbi-modul -1 How can I select multiple rows using parameters from an array in Perl's DBI module? tinker 2009-11-20T17:33:31Z 2009-11-22T22:49:50Z <p>I am required to pull out rows corresponding to column <code>name</code>. The rows being pulled out correspond to address in array <code>@values</code>. Following is my code:</p> <pre><code>use strict; use DBI; open (FH, "/user/address") or die $!; my@values=&lt;FH&gt;; close(FH); my @names; my $query = "Select name from table where address = ?"; my $sth = $dbh-&gt;prepare( $query ) or die "could not prepare statement\n", $dbh-&gt;errstr; foreach my $value(@values){ #@values contain list of address $sth-&gt;execute($value) or die "could not execute statement $query\n", $sth-&gt;errstr; while ($result = $sth-&gt;fetchrow_hashref()){ my $name_reqd = $result-&gt;{name}; print "Name Req: $name_reqd\n"; #not printing anything push (@names, $name_reqd); } } print "@names\n"; #not printing anything </code></pre> <p>But when I print <code>@names</code>, I don't get any output, I am unsure as to what is going wrong.</p> http://stackoverflow.com/questions/949312/how-do-i-refactor-perl-code-that-uses-template-toolkit-with-dbi-to-take-advantage 2 How do I refactor Perl code that uses Template Toolkit with DBI to take advantage of FastCGI? GeneQ 2009-06-04T08:42:19Z 2009-11-21T04:31:05Z <h2>Background</h2> <p>Below is a typical piece of Perl code (<em>sample.pl</em> for the sake of discussion) that grabs submitted form data using CGI, passes the form data to DBI which will then retrieve the required rows from MySQL and then hands the results over to Template Toolkit to render into a HTML document for display.</p> <p>Code listing for <em>sample.pl</em> :</p> <pre><code>#!/usr/bin/perl use strict; use CGI; use DBI: use Template; #Grab submitted form data my $cgi = CGI-&gt;new(); my $idFromSomewhere= $cgi-&gt;param('id'); my $driver = "mysql"; my $server = "localhost:3306"; my $database = "test"; my $url = "DBI:$driver:$database:$server"; my $user = "apache"; my $password = ""; #Connect to database my $db_handle = DBI-&gt;connect( $url, $user, $password ) or die $DBI::errstr; #SQL query to execute my $sql = "SELECT * FROM tests WHERE id=?"; #Prepare SQL query my $statement = $db_handle-&gt;prepare($sql) or die "Couldn't prepare query '$sql': $DBI::errstr\n"; #Execute SQL Query $statement-&gt;execute($idFromSomewhere) or die "Couldn't execute query '$sql': $DBI::errstr\n"; #Get query results as hash my $results = $statement-&gt;fetchall_hashref('id'); $db_handle-&gt;disconnect(); my $tt = Template-&gt;new(); #HTML output template my $input = 'template.html'; my $vars = { tests =&gt; $results, }; #Process template and output as HTML $tt-&gt;process($input, $vars) or die $tt-&gt;error(); </code></pre> <p>For better performance and scalability, web hosts providing shared servers, such as Dreamhost, strongly recommend that all production Perl script support FastCGI. The FastCGI documentation is pretty clear on how to modify existing Perl code to support FastCGI. The simple code below is often given as an example: </p> <pre><code>use FCGI; while (FCGI::accept &gt;= 0) { #Run existing code. } </code></pre> <p><strong><em>What's not so clear is where and what to put in the while loop.</em></strong></p> <h2>Sub Questions</h2> <p><strong>A.</strong> Should the code in sample.pl be simply wrapped around the existing code like so:</p> <pre><code>while (FCGI::accept &gt;= 0) { #Grab submitted form data my $cgi = CGI-&gt;new(); ... ... #Process template and output as HTML $tt-&gt;process($input, $vars) or die $tt-&gt;error(); } </code></pre> <p><strong>B.</strong> Or is there more to it? For instance, should the code that handles the cgi, database and template be refactored into their own subs?</p> <p><strong>C.</strong> Should DBI->connect() and $db_handle->disconnect() be called inside or outside the FCGI while loop and what are the performance implications?</p> <p><strong>D.</strong> Should $tt->process() be called inside or outside the FCGI while loop?</p> http://stackoverflow.com/questions/1764886/how-do-i-connect-to-two-different-servers-using-perls-dbi-module 0 How do I connect to two different servers using Perl's DBI module? shubster 2009-11-19T17:03:12Z 2009-11-20T00:01:18Z <p>I have to compare columns of tables located in two different databases in two different servers. So far, I know how to connect to one server &amp; one database using Perl script. Is it possible to connect to two different servers using Perl's <a href="http://search.cpan.org/dist/DBI" rel="nofollow">DBI</a> module? If so, how?</p> http://stackoverflow.com/questions/1758619/how-do-i-insert-values-from-parallel-arrays-into-a-database-using-perls-dbi-modu 0 How do I insert values from parallel arrays into a database using Perl's DBI module? shubster 2009-11-18T19:54:41Z 2009-11-19T20:45:38Z <p>I need to insert values in database using Perl's <a href="http://search.cpan.org/dist/DBI" rel="nofollow">DBI</a> module. I have parsed a file to obtain these values and hence these values are present in an arrays, say <code>@array1</code>, <code>@array2</code>, <code>@array3</code>. I know how to insert one value at a time but not from an arrays.</p> <p>I know insert one value at a time:</p> <pre><code>$dbh = DBI-&gt;connect("dbi:Sybase:server=$Srv;database=$Db", "$user", "$passwd") or die "could not connect to database"; $query= "INSERT INTO table1 (id, name, address) VALUES (DEFAULT, tom, Park_Road)"; $sth = $dbh-&gt;prepare($query) or die "could not prepare statement\n"; $sth-&gt; execute or die "could not execute statement\n $command\n"; </code></pre> <p>I am not sure if I have array1 containing ids, array2 containing names, and array3 containing address, how would I insert values.</p> http://stackoverflow.com/questions/1707117/how-can-i-install-perls-dbi-module-on-ubuntu 1 How can I install Perl's DBI module on Ubuntu? [closed] Buddy 2009-11-10T10:55:23Z 2009-11-11T14:19:30Z <pre> cant open perl script "Makefile.PL":No such file or directory. </pre> <p>While installing perl-DBI im getting this error. kindly suggest some solution.</p> http://stackoverflow.com/questions/1687261/how-can-i-print-the-sql-query-executed-after-perls-dbi-fills-in-the-placeholders 3 How can I print the SQL query executed after Perl's DBI fills in the placeholders? aidan 2009-11-06T12:27:10Z 2009-11-06T18:29:12Z <p>I'm using Perl's DBI module. I prepare a statement using placeholders, then execute the query.</p> <p>Is it possible to print out the final query that was executed without manually escaping the parameters and dropping them into the placeholders?</p> <p>Thanks</p> http://stackoverflow.com/questions/1681306/perl-dbi-mysql-error-msg-cant-call-method-do-on-an-undefined-value 1 Perl DBI MySQL Error Msg : Can't call method "do" on an undefined value Rachel 2009-11-05T15:31:49Z 2009-11-05T16:22:08Z <p>I am trying to run simple perl dbi example script to connect to mysql database and do some inserts. </p> <p>Code:</p> <pre><code>#! bin/usr/perl -w use strict; use warnings; use DBI(); my $dbh = DBI-&gt;connect( "DBI:mysql:database=SPM;host=IP Address", "username", "password", {'RaiseError'=&gt;1} ); my $dbh-&gt;do( 'INSERT INTO payment_methods(name, description)VALUES(CASH, DOLLAR)' ); my $dbh-&gt;disconnect(); </code></pre> <p>But when I try to run this using <code>perl filename.pl</code> I get following </p> <p><code>Can't call method "do" on an undefined value at perldbi.pl line 12</code></p> <p>That is where I have used <code>do</code> for first time. </p> <p>I have tried to google it and also to tried all different kinds of forum but in vain, if you have any idea as to why this is happening and what is way around for this than it would be really great and I would really appreciate your help. </p> http://stackoverflow.com/questions/1651585/how-do-i-connect-to-an-ms-access-database-using-perl 0 How do I connect to an MS Access database using Perl? samandmoore 2009-10-30T18:39:44Z 2009-11-02T19:31:32Z <p>I have a .accdb file on my local machine and I am trying to connect to it and read some data from 3 tables within the DB. How do I establish the connection using Perl?</p> <p>So far I have scraped together this much for MS Access, but I am getting errors saying that I am not using the correct driver. Any ideas?</p> <pre><code>my $msaccess_dbh = DBI-&gt;connect( 'dbi:ODBC:driver=microsoft access driver (*.accdb);' . 'dbq=C:\path\to\database\databasefile.accdb' ); </code></pre> <p>Thanks!</p> <p>EDIT: Just to clarify, I have no real requirements here. I just need to do 2 or 3 selections from this MS Access DB, and then I will be done with it. So any help with connecting and selecting would be great. Thanks again.</p> http://stackoverflow.com/questions/1656748/how-can-i-fetch-a-single-count-value-from-a-database-with-dbi 3 How can I fetch a single count value from a database with DBI? szabgab 2009-11-01T09:41:41Z 2009-11-02T10:14:16Z <p>The following code seems to be just too much, for getting a single count value. Is there a better, recommended way to fetch a single COUNT value using plain DBI?</p> <pre><code>sub get_count { my $sth = $dbh-&gt;prepare("SELECT COUNT(*) FROM table WHERE..."); $sth-&gt;execute( @params ); my $($count) = $sth-&gt;fetchrow_array; $sth-&gt;finish; return $count; } </code></pre> <p>This is shorter, but I still have two statements.</p> <pre><code>sub get_count_2 { my $ar = $dbh-&gt;selectall_arrayref("SELECT ...", undef, @params) return $ar-&gt;[0][0]; } </code></pre> http://stackoverflow.com/questions/1647234/how-can-i-use-placeholders-for-variadic-sql-functions-with-perls-dbi 3 How can I use placeholders for variadic SQL functions with Perl's DBI? friedo 2009-10-29T23:49:45Z 2009-11-01T12:00:23Z <p>I don't know if "variadic" is actually the right word, but I'm talking about things that can take a list of values, like <code>IN()</code>. If you've been working with DBI for long, you've probably tried to do this:</p> <p>(Note: All examples extremely simplified for brevity)</p> <pre><code>my $vals = join ', ', @numbers; my $sth = $dbh-&gt;prepare( "SELECT * FROM mytbl WHERE foo IN( ? )" ); $sth-&gt;execute( $vals ); # doesn't work </code></pre> <p>DBI placeholders simply don't support these kinds of shenanigans, it's a single value for each <code>?</code> or nothing, as far as I know. </p> <p>This leads me to end up doing something like:</p> <pre><code>my $sth = $dbh-&gt;prepare( "SELECT * FROM mytbl WHERE foo IN ( $vals )" ); </code></pre> <p>which isn't <em>so</em> horrible, but consider a function, like one I wrote today, that has to accept some arbitrary SQL with an <code>IN</code> clause and a list of values</p> <pre><code>sub example { my $self = shift; my ( $sql, @args ) = @_; my $vals = join ', ', @args; $sql =~ s/XXX/$vals/; &lt;---- # AARRRGHGH my $sth = $self-&gt;dbh-&gt;prepare( $sql ); ... } </code></pre> <p>This ends up getting called by stuff that looks like</p> <pre><code>my $sql = "SELECT * FROM mytbl WHERE foo IN( XXX ) AND bar = 42 ORDER BY baz"; my $result = $self-&gt;example( $sql, @quux ); </code></pre> <p>This really offends my sense of aesthetics. Building custom SQL programmaticly is a big enough pain as it is; I don't want to go down the road of regexing my SQL strings if I don't have to.</p> <p>Is there a better way?</p> http://stackoverflow.com/questions/1654913/perl-database-connection-count-error-handling 0 Perl -Database-Connection Count/error handling Jaga 2009-10-31T16:50:24Z 2009-11-01T06:03:25Z <p>Using a perl script (Perl 5.8.6), I'm connecting to Sybase dataserver.</p> <p>Looking for the following:</p> <ol> <li><p>How many connections are currently opened by the script.</p></li> <li><p>Generic (non-dataserver specific) Error handling modules/mechanism</p></li> </ol> <p>When executing a stored proc, it returned the following error message.</p> <blockquote> <p>DBD::Sybase::st execute failed: Server message number=27000 severity=16 state=1 line=4 server=SYBDEV_HYD procedure=j_err text=But this one does [for Statement "EXEC sandbox..j_err"] at /usr/local/lib/perl5/site_perl/5.8.6/DBIx/ContextualFetch.pm line 51.</p> </blockquote> <p>Since the user of this script is a non-techie, trying to report only the message "But this one does" (that appears after the text=). Though I can parse this, trying to see if there is any generic module, since other dataserver (like MySQL, SQL Server etc.) can have their own way of reporting the error msg.</p> http://stackoverflow.com/questions/1584893/can-i-get-the-table-names-from-an-sql-query-with-perls-dbi 1 Can I get the table names from an SQL query with Perl's DBI? PoorLuzer 2009-10-18T13:25:29Z 2009-10-20T07:12:40Z <p>I am writing small snippets in Perl and DBI (SQLite yay!)</p> <p>I would like to log some specific queries to text files having the same filename as that of the table name(s) on which the query is run.</p> <p>Here is the code I use to dump results to a text file :</p> <pre><code>sub dumpResultsToFile { my ( $query ) = @_; # Prepare and execute the query my $sth = $dbh-&gt;prepare( $query ); $sth-&gt;execute(); # Open the output file open FILE, "&gt;results.txt" or die "Can't open results output file: $!"; # Dump the formatted results to the file $sth-&gt;dump_results( 80, "\n", ", ", \*FILE ); # Close the output file close FILE or die "Error closing result file: $!\n"; } </code></pre> <p>Here is how I can call this :</p> <pre><code>dumpResultsToFile ( &lt;&lt;" END_SQL" ); SELECT TADA.fileName, TADA.labelName FROM TADA END_SQL </code></pre> <p>What I effectively want is, instead of stuff going to "results.txt" ( that is hardcoded above ), it should now go to "TADA.txt".</p> <p>Had this been a join between tables "HAI" and "LOL", then the resultset should be written to "HAI.LOL.txt"</p> <p><strong>Is what I am saying even possible using some magic in DBI?</strong></p> <p>I would rather do without parsing the SQL query for tables, but if there is a widely used and debugged function to grab <em>source</em> table names in a SQL query, that would work for me too.</p> <p>What I want is just to have a filename that gives some hint as to what query output it holds. Seggregating based on table name seems a nice way for now.</p> http://stackoverflow.com/questions/734289/how-can-i-have-dbic-persistent-database-connection-in-modperl 0 How can I have DBIC persistent database connection in mod_perl? Yan Cheng Cheok 2009-04-09T13:41:16Z 2009-10-18T14:05:49Z <p>I am using mod_perl for my web application. Currently, I plan to use a mysql database across the network. In every CGI request to display_customer_transaction.cgi, my script will</p> <ol> <li>Open up database connection across network</li> <li>Perform query on the database using SQL statement</li> <li>Analysis the data retrieved from database</li> <li>Print out the data in HTML format</li> <li>Close the database connection</li> </ol> <p>After some profiling, I realize step (1) is the bottleneck. Hence, I wish to avoid opening and closing a database connection for every CGI request. My wish is, if my first CGI request opens up a database connection, my second incoming CGI request (from different client) may reuse the first database connection.</p> <p>I tried to Google for "DBIX Persistent Database Connection" but hardly find relevant result. (Edit: that's because it's called DIBC, or DBIx::Class, not DBIX.)</p> <p>I further find for relevant information, using <a href="http://search.cpan.org/~abh/Apache-DBI/DBI.pm" rel="nofollow">Apache::DBI</a> (However, my intention is on DBIX, not Apache::DBI). There are some information which confused me:</p> <blockquote> <p>The Apache::DBI module still has a limitation: it keeps database connections persistent on a per process basis.</p> </blockquote> <p>All the while, my concept on how Apache serving CGI request is that</p> <ol> <li>Apache will always spawn a new process to serve an incoming new CGI request. Whenever the Perl interpreter finish executed Perl script, the process will dead.</li> </ol> <p>So, if Apache::DBI module only able to keeps database connections persistent on a per process basis, how can my second CGI request re-use back the connection opened by the first CGI request?</p> <p>But come back to my original question. How can I have DBIX persistent database connection in mod_perl?</p> http://stackoverflow.com/questions/1568958/is-mysql-able-to-return-mutiple-result-set-with-one-query 1 Is MySQL able to return mutiple result set with one query? Mario 2009-10-14T20:59:24Z 2009-10-16T07:13:42Z <p>I have the following (returning two separate result sets) being successfully executed from a proc but cannot do the same when executing this as a basic query.</p> <pre><code>SELECT * FROM persons; SELECT * FROM addresses; </code></pre> <p>Possible? What's the syntax?</p> <p>EDIT:</p> <p>I am using Ruby's DBI library:</p> <pre><code>dbh.query("SELECT * FROM persons; SELECT * FROM addresses;") </code></pre> http://stackoverflow.com/questions/1530329/jrruby-sybase-jdbc-and-dbi-fetching-column-name-with-the-as-clause-issue 0 JRruby, Sybase JDBC and DBI - fetching column name with the AS clause issue Spasm 2009-10-07T08:44:41Z 2009-10-13T14:57:39Z <p>I have a ruby script which I run using the JRuby Interpreter. The script connects to a Sybase database using DBI and Sybase JDBC (jTDS3.jar and jconn3.jar)</p> <p>My problem is that I have a select query that alters the column names of table. For example:</p> <pre><code>SELECT t.TRANSACTION as 'business_transaction', t.TRADE_CURRENCY as 'currency', t.CURRENCY as 'settlement_currency' ...etc... FROM TRADE t ...etc... </code></pre> <p>My problem is when using the examples directly from the <a href="http://www.kitebird.com/articles/ruby-dbi.html" rel="nofollow">documentation</a> </p> <pre><code>sth = dbh.execute(stmt) printf "Number of rows: %d\n", rows.size printf "Number of columns: %d\n", sth.column_names.size sth.column_info.each_with_index do |info, i| printf "--- Column %d (%s) ---\n", i, info["name"] end </code></pre> <p>or simply</p> <pre><code>sth = dbh.execute(stmt) rows = sth.fetch_all col_names = sth.column_names sth.finish DBI::Utils::TableFormatter.ascii(col_names, rows) </code></pre> <p>Not <strong>ALL</strong> the names come out as I set them using the 'as' clause in the query. Some are the original field names and some are the names I have specified.</p> <p>For example they will list like:</p> <pre><code>--- Column 0 (TRANSACTION) --- --- Column 1 (TRADE_CURRENCY) --- --- Column 2 (settlement_currency) --- </code></pre> <p>or </p> <pre><code>TRANSACTION TRADE_CURRENCY settlement_currency </code></pre> <p>When testing this in Squirrel SQL Client the columns are correctly named so is this a bug in DBI or the Sybase JDBC drivers? or am I doing something wrong?</p> <p>Any help would be greatly appreciated </p> http://stackoverflow.com/questions/1511330/why-wont-this-isql-command-run-through-perls-dbi 0 Why won't this ISQL command run through Perl's DBI? CheeseConQueso 2009-10-02T19:18:00Z 2009-10-05T19:59:41Z <p>A while back I was looking for a <a href="http://stackoverflow.com/questions/1074364/informix-7-3-isql-insert-statement-text-blob-clob-field-insert-error">way to insert values into a text field through isql</a> and eventually found some load command that worked out for me.</p> <p>It doesn't work when I try to execute it from Perl. I get a syntax error. I have tried two separate methods and both are not working so far.</p> <p>I have the SQL statement variable print out at the end of each loop cycle so I know that the syntax is correct, but just not getting across correctly.</p> <p>Here's the latest snip of code I was testing:</p> <pre><code>foreach(@files) { $STMT = &lt;&lt;EOF; load from $_ insert into some_table EOF $sth = $db1-&gt;prepare($STMT); $sth-&gt;execute; } </code></pre> <p><code>@files</code> is an array whose elements are a full path/location of a pipe-delimited text file (ex. /home/xx/xx/xx/something.txt)</p> <p>The number of columns in the table match the number of fields in the text file and the type-checking is fine (I've loaded test files manually without fail)</p> <p>The error I get back is:</p> <pre><code>DBD::Informix::db prepare failed: SQL: -201: A syntax error has occurred. </code></pre> <p>Any idea what might be causing this?<br /> <hr> <b>EDIT to RET's &amp; Petr's answers</b></p> <pre><code>$STMT = "'LOAD FROM $_ INSERT INTO table'"; system("echo $STMT | isql $db") </code></pre> <p>I had to change it to this, because the die command would force an unnatural death and the statement had to be wrapped in single quotes.</p> http://stackoverflow.com/questions/1496658/how-do-i-create-a-table-trigger-with-dbdsqlite 0 How do I create a table trigger with DBD::SQLite? vicTROLLA 2009-09-30T07:52:38Z 2009-09-30T16:57:21Z <p>Can anyone provide syntax to create a table trigger preferably with DBI's do() method. It doesn't seem to like me putting everything on one line. Not sure what i'm doing wrong. Here's what I've got:</p> <pre><code>$dbh-&gt;do("CREATE TABLE image(img_id integer primary key, md5sum text, path text, name text, date DATE)"); $dbh-&gt;do("CREATE TRIGGER insert_img_date AFTER INSERT ON image BEGIN UPDATE image SET date = DATETIME('NOW') END"); </code></pre> http://stackoverflow.com/questions/395402/how-do-i-solve-this-issue-with-gethostbynamer-and-dbi-or-dbdmysql-on-freebsd 2 How do I solve this issue with gethostbyname_r and DBI or DBD::MySQL on FreeBSD? davidcl 2008-12-27T20:56:32Z 2009-09-30T11:53:47Z <p>I have some old perl code which recently stopped working on a FreeBSD box. The code which fails looks (in simplest form) like this:</p> <pre><code>#!/usr/local/bin/perl -w use strict; use DBI; my $datasource = "DBI:mysql:dbname:hostname.domain.com"; my $user = "username"; my $pass = "password"; DBI-&gt;connect($datasource, $user, $pass); </code></pre> <p>This fails with the following error:</p> <pre><code>/libexec/ld-elf.so.1: /usr/local/lib/mysql/libmysqlclient.so.15: Undefined symbol "gethostbyname_r" </code></pre> <p>If I change the datasource to reference "localhost" the code succeeds.</p> <p>I've reinstalled mysql-client, DBI, and DBD-mysql from ports; no effect.</p> <p>Other applications on this server (PHP, command line tools) are able to access mysql databases by hostname without trouble.</p> <p>Suggestions for how to resolve this?</p> <p>EDITED TO ADD: I notice that my box has both <code>libmysqlclient.so.15</code> and <code>libmysqlclient_r.so.15</code>. Could the problem be that DBD::mysql is trying to use libmysqlclient when it should be using libmysqlclient_r? And if so, how to resolve?</p> http://stackoverflow.com/questions/1473273/why-am-i-getting-error-converting-data-type-varchar-to-numeric-on-a-floating-po 0 Why am I getting 'Error converting data type varchar to numeric' on a floating point number in Perl? LeBleu 2009-09-24T18:09:51Z 2009-09-25T05:04:13Z <p>We are inserting values into a SQL Server 2005 database column of type NUMERIC(19,5) from Perl. As long as the absolute values are .0001 or greater, it is working. However, when the values go to the 5th decimal place, Perl starts storing them in exponential format (<code>-9e-05</code> instead of <code>-0.00009</code>), and then we get the error "<code>Error converting data type varchar to numeric</code>" from SQL Server. How do we prevent that and cause it to properly insert small numeric values?</p> <p>We are using perl v5.8.5, DBI 1.56, DBD::Sybase 1.07, and SQL Server 2005.</p> <p>The code is roughly the following, but I have removed the extraneous fields:</p> <pre><code>$invoice-&gt;{IL_UNITPRICE} = 0.09; # Actually comes from another database $invoice-&gt;{IL_PRICEUNITCONV} = 0.001; # Actually comes from another database $unitprice = $invoice-&gt;{IL_UNITPRICE} * -1 * $invoice-&gt;{IL_PRICEUNITCONV}; #$unitprice equals -9e-05 at this point. $sth = $dbh-&gt;prepare('INSERT INTO foo ( bar ) VALUES ( ? )'); $sth-&gt;execute($unitprice); </code></pre> <p>The above line fails with error: <code>DBD::Sybase::st execute failed: Server message number=8114 severity=16 state=5 line=2 server=baz text=Error converting data type varchar to numeric. </code></p> http://stackoverflow.com/questions/673855/ruby-mysql-timestamp-datetime-problem 0 Ruby: Mysql timestamp/datetime problem amirka 2009-03-23T15:30:25Z 2009-09-22T16:58:51Z <p>Is there solution for '0000-00-00 00:00:00' problem, without changing table?</p> <p>I have "[]" in this query:</p> <pre><code>dbh.select_all("select j.n, j.name, j.dsc, j.flag, j.td from job j where j.td='0000-00-00 00:00:00'") </code></pre> <p>I look solution for this: <a href="http://rubyforge.org/tracker/index.php?func=detail&amp;aid=22243&amp;group%5Fid=234&amp;atid=967" rel="nofollow">http://rubyforge.org/tracker/index.php?func=detail&amp;aid=22243&amp;group_id=234&amp;atid=967</a></p> http://stackoverflow.com/questions/1400848/how-do-i-use-a-variable-for-the-name-of-a-table-in-a-dbi-query 3 How do I use a variable for the name of a table in a DBI query? thaiyoshi 2009-09-09T16:58:23Z 2009-09-12T12:01:54Z <p>How do I using a variable for the name of a table in a DBI query? I know how to use placeholders as part of the where clause, but how do I do this for the table name?</p> <p>I would like to do something like this:</p> <pre><code> my $table_name='table1'; my $query = $dbh_cgi-&gt;prepare("select * from ?"); $query-&gt;execute($table_name); </code></pre> <p>So far, I end up getting a MySQL syntax error because DBI adds quotes around the name, table1. </p> http://stackoverflow.com/questions/1303514/why-does-dbh-dovacuum-fail-with-perls-dbdsqlite 2 Why does $dbh->do('VACUUM') fail with Perl's DBD::SQLite? Galaxy 2009-08-20T01:33:18Z 2009-08-20T03:13:30Z <p>I want to do <code>VACUUM</code> at a certain time on a SQLite database under Perl, but it always says</p> <blockquote> <p>DBD::SQLite::db do failed: cannot VACUUM from within a transaction</p> </blockquote> <p>So how do I do this?</p> <pre><code>my %attr = ( RaiseError =&gt; 0, PrintError =&gt; 1, AutoCommit =&gt; 0 ); my $dbh = DBI-&gt;connect('dbi:SQLite:dbname='.$file'','',\%attr) or die $DBI::errstr; </code></pre> <p>I am using <code>AutoCommit =&gt; 0</code>. And the error happens while:</p> <pre><code>$dbh-&gt;do('DELETE FROM soap'); $dbh-&gt;do('DELETE FROM result'); $dbh-&gt;commit; $dbh-&gt;do('VACUUM'); </code></pre> http://stackoverflow.com/questions/1297140/how-can-i-get-timestamps-in-perl-dbi-logfiles 2 How can I get timestamps in Perl DBI logfiles? Todd Hunter 2009-08-18T23:34:27Z 2009-08-19T10:59:52Z <p>I have an issue where an application is randomly dying during a DBI call. We cannot reliably reproduce this in our test or acceptance environment, so I am required to monitor it on our production system to try to figure out what is happening.</p> <p>I am logging all the <code>DBI</code> traffic via the <code>DBI_TRACE</code> environment variable.</p> <pre><code>DBI_TRACE=3=dbi.log script.pl </code></pre> <p>The issue is however that there are no time stamps in the DBI log files, so it is difficult to go back through them to find what was occurring at the time of the die.</p> <p>Is there any way to enable logging of DBI with time stamps?</p> http://stackoverflow.com/questions/1288996/is-there-a-database-access-library-for-c-and-or-c-with-a-similar-interface-to-p 4 Is there a database access library for C and/or C++ with a similar interface to Perl's DBI? ZeroCool 2009-08-17T16:24:59Z 2009-08-18T00:10:15Z <p>I'm willing to write a subset of Perl's <a href="http://search.cpan.org/perldoc/DBI" rel="nofollow"><code>DBI</code></a> interface for <code>libodbc</code> (or <code>unixODBC</code>) in C++. I believe doing so will allow me concentrate better on my goal.</p> <p>BTW, I prefer avoiding to reinvent the wheel, if of course something similar is already out there. </p> http://stackoverflow.com/questions/1078397/protecting-against-sql-tablename-injection-how-far-is-too-far 3 Protecting against SQL tablename injection - how far is too far? James F 2009-07-03T08:36:30Z 2009-08-07T02:53:57Z <p>I'm developing a relatively small application to talk to PostgreSQL, and wanted to get some feedback on how far is too far to go with regards to protecting against SQL injection.</p> <p>The application is in Perl and does not use any ORM modules (just DBI). The SQL statements are constructed in the typical fashion with placeholders:</p> <pre><code>my $sql = "SELECT * FROM $cfg-&gt;{tablename} WHERE foo = ?"; my $sth = $dbh-&gt;prepare($sql); $sth-&gt;execute('bar'); </code></pre> <p>The reason the tablename is interpolated is that the application has to perform the same operation against multiple tables, all of which have a column 'foo'.</p> <p>Using the ? placeholder protects against most of the simple SQL injection attacks. My question is around the tablename, which you can't use a placeholder for. The table comes from the config file, but the app supports a --configfile switch to use an alternate config file.</p> <p>The database credentials are stored in the config file. So if an attacker could craft a config file (or replace the default one) with one in which $cfg->{tablename} was replaced with something malicious, then the application could be "tricked" into running the malicious code.</p> <p>For an attacker to do this, they'd have to have valid database credentials already, otherwise the application wouldn't connect. If they have credentials, then they can just craft their own code using DBI or use the psql cli to do something malicious.</p> <p>I see two possible ways to protect against this:</p> <ul> <li>switch to an ORM, in which case I'd be doing something on the order of $orm->get_class_for_table($cfg->{tablename}</li> <li>use a regex to sanitize the tablename before preparing the SQL statement</li> <li>use $dbh->quote_identifier()</li> </ul> <p>Obviously the second way is the "cheap and cheerful" one. But given the statement about credentials above, are either of these approaches really warranted? How much effort is too much when it comes to forcing the attacker to just use an alternate attack vector (as opposed to effort that actually prevents the attack?</p> http://stackoverflow.com/questions/1232950/perl-dbi-run-sql-script-with-multiple-statements 1 Perl DBI - run SQL Script with multiple statements guigui42 2009-08-05T12:29:14Z 2009-08-06T09:05:50Z <p>I have a sql file <strong>test.sql</strong> used to run some SQL (create object / update / delete / insert) that can look like this</p> <pre><code> CREATE TABLE test_dbi1 ( test_dbi_intr_no NUMBER(15) , test_dbi_name VARCHAR2(100); UPDATE mytable SET col1=1; CREATE TABLE test_dbi2 ( test_dbi_intr_no NUMBER(15) , test_dbi_name VARCHAR2(100); </code></pre> <p>Usually, i would just use SQLPLUS (from within Perl) to execute this test.sql using this command : @test.sql</p> <p>Is there a way to do the same thing, using DBI in Perl ? So far, i found DBI can only execute one statement at a time, and without the ";" at the end.</p>