4
votes
2answers
31 views
How can I pass MySQL functions as bind parameters in prepared statement?
I'm trying to do this:
$sth = $dbi->prepare('INSERT INTO table VALUES (?, ?, ?)');
$sth->execute(
$var1,
$var2 || 'NOW()',
$var3
);
without any luck. Any ideas?
1
vote
2answers
21 views
how to insert records in 2 mysql tables
I'm trying to insert records on multiple mysql tables with similar entities(a normalized table)
I tried to do this but I get an error. I've also seen joins but it seems to work only when retrieving …
0
votes
0answers
13 views
How to return row of sum()s
I now find my original table structure was not good, so want to change it.
But I am having a hard time designing queries to obtain totals in rows with the new structure.
current structure:
…
0
votes
0answers
11 views
Fulltext search with rich media files.
Hi all,
What's the best way to perform fulltext searches across rich media files? I'm trying to implement a system where the user could upload random files (.doc, .pdf, .jpg, ...) and down the line, …
1
vote
0answers
4 views
Is there a “Force Index” equivalent in Vertica?
Is there a "Force Index" from MySQL equivalent in Vertica DB?
0
votes
1answer
11 views
Compiling Mysqldb for jython 2.5 on Solaris
I have used python2.6 + MySQL on Windows and there are binaries available.
I wanted to get the whole thing working on Solaris
Hence got the Mysql-Python package from here
I had to get the …
2
votes
6answers
103 views
PHP MySQL Connection Failed
Hi,
I am trying to connect my PHP code to MySQL safely with the following code:
<html>
<?php
$con = mysql_connect("localhost:3306","root","password");
if(!$con)
{
die('Could not …
1
vote
2answers
38 views
long running queries: observing partial results?
As part of a data analysis project, I will be issuing some long running queries on a mysql database. My future course of action is contingent on the results I obtain along the way. It would be useful …
0
votes
0answers
11 views
Help with a transaction within a stored procedure
I have 2 very simple update statements that I need to use inside of a stored procedure. I want to use a transaction to rollback if either one of these updates should fail. Could someone please give me …
1
vote
2answers
26 views
cities and distance by latitute-longitude
I have a table with:
city
latitude
longitude
And I need a sql query to know all cities are 100 miles from new york.
Could anyone help me before I go crazy ?
2
votes
2answers
32 views
How to use sum() within a group_concat() ?
Question revised
Really wanted a group_concat of sums...
Table: shops
+---------+--------+--------+
| shop_id | name | state |
+---------+--------+--------+
| 0 | shop 0 | 5 |
| 1 …
3
votes
4answers
194 views
Is MySQL more resistant to SQL injection attack than PostgreSQL (under Perl/DBI) ?
I am reviewing a Linux based perl web application that contains a login handler with the ubiquitous
my $sth = $DB->prepare("SELECT password from passwords where userid='$userid'") or die; …
0
votes
0answers
2 views
Silverlight 3 and RIA Services and MySQL and Connector 6.22
I building a sl + ria application. I can add a model on asp.net project but when I add a dataservices class the tables from model(EF) does not show.
0
votes
2answers
41 views
Is something wrong with this MySQL query?
Hey guys,
I'm trying to update a site that was coded horribly, and I think there is an error in this multiple IF statement. I've been Googling for a while and can't find any example of multiple IFs …
1
vote
2answers
26 views
SELECT Statement Performance using * versus a List of Field Names
In some code I'm reading, all SELECT statements are using a list of field names where all fields in the table are being selected. For example, with a table called Book and fields Author, PublishDate, …
