Tagged Questions
1
vote
1answer
36 views
DBIx::Class: Counting entries with specific values in related table
I have the two MySQL tables humans and dogs:
TABLE humans:
id int, name varchar(32)
TABLE dogs
id int, human int, dead int
Every human can have zero or more dogs. If the dog is dead, then the ...
0
votes
1answer
19 views
Understanding Selectall_hashref and fetching/printing more than 1 column
I have a PERL script that is connecting to a MySQL database, and selecting all the data from a table limited by set criteria in the form:
my $hash_ref = $dbh->selectall_hashref($sql, 'Key');
...
0
votes
1answer
31 views
What's failing in my Perl script? MySQL/getopt
I wrote a script where I'm passing (optional, I hope!) command line arguments and sending them to a MySQL query. If any are omitted I want the query to basically ignore that argument. If I pass all 3, ...
1
vote
1answer
32 views
MySQL query assistance - ignoring nulls in query (using PERL and Regex)
I have a script that is passing up to 3 command line arguments to a MySQL query. The table it is querying is a list of professional athletes and the sport they play. My arguments in command line are ...
1
vote
2answers
30 views
Does last_insert_id return the correct auto_increment id in a multiprocessing environment?
Here's some simplified code in my web application:
sub insert {
my $pid = fork();
if ($pid > 0) {
return;
}
else {
&insert_to_mysql();
my $last_id = ...
0
votes
3answers
71 views
Perl, HTML and MySQL where did my program break? [closed]
Yes I am a student, yes this is an assignment but I just need some help clearing things up. I don't intend for someone to do my homework for me.
So I have a database with 5 books in it with 6 ...
2
votes
2answers
48 views
Saving the output of a Perl SQL query to a hash instead of an array
I'm trying to add an argument to the end of a command line, run that search through a MySQL database, and then list the results or say that nothing was found. I'm trying to do it by saving the query ...
1
vote
2answers
73 views
storing complex perl data structures in MySQL
I work on a large perl website that currently stores all the configurations in a perl module. I have the need to move these settings into MySQL. The problem is the settings are defined in lots of ...
-3
votes
2answers
58 views
Passing a command line argument (as a string) into my Perl script
I'm extremely new at Perl and trying to prove I can pick it up quickly. What I was asked to do is add a string as an argument on my command line, and then feed that into my script. From there it is ...
2
votes
1answer
57 views
Why does perl DBI returns 0 rows when statement from trace returns 1
I have been working with perl DBI for the first time this week.
Majority of queries / inserts are working okay, however I am having issues with one specific query that is returning 0 rows. When I ...
1
vote
2answers
67 views
Use executed statement to insert results in another table (Perl DBI and MySQL)
I have the need to execute a query in MySQL using Perl and DBI and insert the results in another table. The second table is created on the fly to define the same number of fields that the original ...
0
votes
1answer
48 views
Perl - MySQL - How to tune dB and/or code for read loop
DI have a task table which contains provisioning tasks to be completed for different systems. Each system has a separate Perl process which runs continuously and checks the table to see if it has any ...
0
votes
3answers
84 views
Perl search lookup efficiency
I have a batch of urls that I have to search through the database for a match or rather if the url contains the url in the database.
An example of a url is
http://www.foodandnuts.com/login.html
...
0
votes
0answers
18 views
Mysql query browser can't connect, Toad, Perl, workbench and command line can? [migrated]
Mysql query browser used to work fine then suddenly stopped working:
cannot connect to database server. Your connection attempt failed for user 'brianp' from your host to server at viper:3306: Could ...
0
votes
1answer
157 views
Perl Import large .csv to MySQL, don't repeat data
I am trying to import several .csv files into a mysql database, the script below works except that it only imports the first row of my csv data into the database. Both my tables are populated with ...
0
votes
2answers
67 views
Perl script using DBI module to access differently installed MySQL
So I am using Perl DBI module to access MySQL database on a server linux machine, which I do not have root access. The admin installed the MySQL and create a database for me. I can write a perl script ...
0
votes
0answers
63 views
SELECT MySQL binary column data
I am trying to read data from MySQL from a column that is defined as 'binary(8)'. The data in this column can be unsigned long or double. Is there some way to read this data using a SELECT ...
0
votes
1answer
38 views
Perl sql select all
This is my code
my $results = $dbh->selectall_hashref('SELECT * FROM sample.teachers where term like "$searchterm%"', 'teacher');
my $searchedresults= "";
foreach my $e (keys %$results) {
...
0
votes
3answers
56 views
Perl - DBI - MySQL - Easy way to get row id after update?
Is there an easy way to get the id of the row that was affected by an update statement from DBI? In this particular case, it will always be either 0 or 1 row. I didn't want the expense of having to ...
0
votes
2answers
79 views
Selecting distinct values from key/value pairs in a seperate table
I have 2 database tables
JOBS(JOB_ID, JOB_TIME, JOB_NAME,...), JOB_PARAMETERS(JOB_ID,NAME,VALUE)
where JOB_PARAMETERS is essentially a map containing job parameter key value pairs.
Every job may ...
0
votes
0answers
44 views
Perl-MySQL database password input; GENE-counter
First time poster.
I'm extremely new to Perl / MySQL / Linux (Ubuntu), so there is every chance that I'm doing something ridiculous. Any help would be greatly appreciated. If i'm asking in the wrong ...
0
votes
1answer
45 views
Check if database exists while trying to grant permissions
I am trying to build a few functions into a perl script to create, delete and grant permissions on mysql databases.
At the moment, I try to grant permissions for a user to specified database, like ...
2
votes
2answers
117 views
Perl Module Instantiation + DBI + Forks “Mysql server has gone away”
I have written a perl program that parses records from csv into a db.
The program worked fine but took a long time. So I decided to fork the main parsing process.
After a bit of wrangling with fork ...
0
votes
1answer
42 views
Getting 2 different lengths for a text field in perl from a DBI query
I have encrypted data in a mysql table stored as a text field.
Everything was originally written in Windows perl and that still works without issue.
My problem is that I am running the same code on ...
0
votes
1answer
82 views
perl + mysql Lost connection to MySQL server during query
It seems a common problem and I've searched a lot but haven't successfully find any solution to my situation. Tried mysql_auto_reconnect and connect_cached but did not help. This is basically the code ...
0
votes
2answers
38 views
escape a sql query error message using Perl
J have my inventory data inside a csv file.
I get an error message because I have a special character on my insert values, I don't want to deal with those values because they were tagged with special ...
0
votes
0answers
41 views
how to compare two cursors in mysql
In a DB , i have to compare data between two cursors.
Steps:
In Cursor 1, We write a select query(a huge select query) which compares many tables and creates a file and also stores this resultant ...
0
votes
1answer
51 views
Using XML::libXML to parse xml--get nth Child Node
I have an xml document that contains information I want to put into a database. Example:
<pc>
<name>John</name>
<last>Smith</last>
<address>
...
-7
votes
2answers
73 views
Mysql equivalent for “ne” or not equal perl [closed]
Novice here. Sorry and thanks. I need to find records that don't equal 'Ok'. This code doesn't work.
Is there a MySql equivalent to Perl's ne?
use DBI;
SELECT * FROM people WHERE status ne 'Ok'
-1
votes
1answer
30 views
How to implemment a lock and release to mysql table?
I have a perl file test.pl that read a mysql table t1 and do some operations.
If two users execute test.pl at same time, then i need to block one user from read and write to t1 .
Once the other ...
2
votes
2answers
99 views
perl script to create xml from mysql query - out of memory
I need to generate an XML file from database records, and I get the error "out of memory". Here's the script I am using, it's found on Google, but it's not suitable for me, and it's also killing the ...
1
vote
2answers
68 views
DBI/DBD::mysql/mysql_type_name: How to distinguish between Blob and Text?
This example outputs two times "blob". How could I find out, if the datatype of a column is TEXT?
#!/usr/bin/env perl
use warnings;
use strict;
use DBI;
use Data::Dumper;
my$dbh = DBI->connect( ...
1
vote
1answer
70 views
What's the proper way to implement periodic matching system for a mySQL database?
Forgive me for asking if this is asked often, but I'm having trouble describing my issue and thus am having trouble finding something useful with Google.
I would like to create a "profile matching ...
0
votes
1answer
153 views
Access denied error when connecting to remote MySQL server using Perl DBD-mysql
I attempt to connect to a remote MySQL server with Perl DBD-mysql module. The client is under Windows, so before connecting with Perl, I did some tests with Windos cmd line:
mysql -h xx.xx.xx.xx -u ...
0
votes
1answer
131 views
Perl using Jquery to display html onclick looped database insert
Edited** Being a Perl newbie is tough lol. I just used regex and my hash I read my cgi paramaters into.
my $regex = qr/tierrate/;
my $count = 0;
foreach (grep { /$regex/ } keys %form) {
$count++;
...
0
votes
2answers
250 views
perl DBD::mysql not working with mysql 5.6?
I installed MySQL 5.6.10 onto Mac OSX 10.8.2, in /usr/local/mysql-5.6.10-osx10.7-x86_64/. I then tried to run a Perl program that connects to a MySQL database using DBI and DBD::mysql. I got the ...
0
votes
1answer
128 views
Perl and MYSQL - Select data between year-month-day hour:minute:seconds (unix?) style timestamps
I have looked all day for an answer and tried all my thoughts as well.
What I am doing is seemingly easy but, VERY difficult for me.
I must do this without installing additional Perl Modules.
I am ...
0
votes
2answers
87 views
Perl variable set from query string not available in subroutine (available in some subroutines!)
Perl has beaten me down good today and I have a question. I'm accessing a perl script via a link from another perl script. agent.pl?agentid=40
In the agent.pl script I'm using the displaying the ...
0
votes
1answer
119 views
Perl passing data between scripts without using query string
I'm new to Perl. New to programming. I've written a few CGI screens for a create, search, and view "agent". Create inserts records into database tables, search displays some details of the record, ...
4
votes
1answer
232 views
How to Encode and Decode “Acute accented characters” using Perl
I am working in a web based educational website, where we are using Perl, MySQL 5, Apache and Template Toolkit. we are planning to introduce the support for multiple\ Language in our website.
What we ...
-2
votes
2answers
136 views
Perl How can I declare scalar variable (my) outside of loop, increment scalar variable inside loop, and use incremented variable name outside of loop
I'm pretty new to Perl. I'm writing a CGI, calling a subroutine that calls another subroutine and displays HTML, in the second called subroutine I am executing a mysql select statement and setting it ...
2
votes
1answer
45 views
Adding multiple items to a model in catalyst
I am building a Perl website using Catalyst. The site will allow users to upload a large (100,000 lines or more) text file for processing. I need to convert each line to a row in a MySQL database.
...
1
vote
2answers
94 views
How to create subroutine in mysql perl with variables
I have two mysql commands. I want to create a subroutine with these two mysql commands for the rest of my data that I have to search through. I have a lot of entries. Is there a way to create a ...
-2
votes
2answers
105 views
How to submit concurrent MYSQL queries (SELECT queries) at an instance? [closed]
I want to submit simultaneous MYSQL queries (only select, as i know Insert/Update are executed sequentially on the database end).
Can this be done using a single connection and several query ...
1
vote
2answers
100 views
Speed up query: ORDER BY with LIMIT (indexing?)
I am trying to find the closest gene, given position information, from a gene table. Here is an example:
SELECT chrom, txStart, txEnd, name2, strand FROM
wgEncodeGencodeCompV12 WHERE chrom = ...
2
votes
1answer
77 views
Cannot fetch sorted data from mysql database by perl
I am trying to create a cgi based on perl to display my album and now I am working on the sorting function on photos. I stored the information of each photo in mysql. To display all photos, I have to ...
0
votes
1answer
59 views
How use or operator in SQL statements?
I am new to MySQL. How can I slash and backslash escape? I want to find paths in a table.
Path
----------------------
e:\5118\07_Live/Tools\
e:\5118/07_Live\Tools/
How can select these two rows ...
0
votes
2answers
37 views
Sending operators to mysql statement
I've been stuck on this for about three hours and searched the web, all I need to happen is for a popup_menu to send an operator to a mysql statement, here is what I have so far.
...
-1
votes
1answer
138 views
PHP/MySQL table search by Perl
With not understanding perl/MySQL enough I’m hoping someone here can give a helping hand.
The code obviously doesn't work, but it's what I have so far and I'm still learning.
I’m wanting to open and ...
0
votes
0answers
83 views
Perl DBI $dbh->column_info for MySQL: DEFAULT value not returned?
Referring to CPAN DBI doc, I'm reading about the column_info method for a database object, and it doesn't appear to me to return COLUMN_DEFAULT. It's a column in information_schema.COLUMNS. Is this ...


