0
votes
2answers
24 views
single quotes and double quotes in mysql insert and update query (java)
The ComName is 'a'b'c'"def"j Limited.
i try to add \ before every ' and " but the resultant query that is executed is
"UPDATE empTable SET empId= '25', ComName = 'a'b'c'"def"j Limited where ID=1"
…
1
vote
1answer
5 views
Creating a MySQL SET’s from a string
Is there a way to create a set from a string of separated values in MySQL? For example:
'the,quick,brown,fox'
=>
'the','quick','brown','fox'
A sort of inverse EXPORT_SET without the bit …
0
votes
1answer
57 views
Connect with a database over the LAN
How to connect with a database over the LAN?
I have only the name of the computer.
0
votes
0answers
13 views
[MySQL] Search literal within a word
Is there a way to perform a FULLTEXT search which returns literals found within words?
I have been using MATCH(col) AGAINST('+literal*' IN BOOLEAN MODE) but it fails if the text is like:
…
0
votes
0answers
22 views
Add all lines multiplied by another line in another table
Hi,
I hope I can explain this good enough. I have 3 tables. wo_parts, workorders and part2vendor. I am trying to get the cost price of all parts sold in a month. I have this script.
$scoreCostQuery …
0
votes
3answers
23 views
Table structure for menus in mySQL
I need advices for a table structure.
I need to create menus dynamically.
There will be more than 3 menus.
Some of menus will have multi-level structures.
What is the best way to strucure the menu …
0
votes
2answers
67 views
please help me in this query
I have three tables (user, friends, posts) and two users (user1 and user2).
When user1 adds user2 as friend then user1 can see the posts of user2 just like on Facebook. But only the posts after the …
0
votes
1answer
15 views
mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in php
$query = "SELECT UniqueID FROM configuration";
$result = mysql_query($query)or die(mysql_error());;
while($row = mysql_fetch_assoc($result)) { }
throwing exception as
Warning: …
0
votes
1answer
24 views
What is the best LALR parser generator for C++ that can generate meaningful error messages
I am looking for the best solution for a LALR parser generator for C++ that will allow me to generate really good error messages. I really hate the syntax errors that MySQL generates and I want to …
0
votes
2answers
18 views
Get all entries from one table together with the count of these entries in another table.
I've got 3 tables:
users (id, name, ...)
items (id, name, ...)
downloads (user_id, item_id, ...)
How do I get all users together with the number of downloads they have?
0
votes
3answers
25 views
Update in time in MySQL is not working
I am trying to insert date time on the MySQL DB. I have kept the field as VARCHAR(9182)
date_default_timezone_set('Asia/Kolkata');
$timestamp = date("m/d/Y h:i:s a", time());
$utimeprocess = …
0
votes
0answers
12 views
libmysqlclient15-dev on macs?
Does OSX need an install of libmysqlclient15-dev? I'm trying to compile a gem that is failing and a lot of sources says to install "libmysqlclient15-dev" but I only see this for Linux, not OSX. Am I …
1
vote
2answers
19 views
Image file permission - image resizer
PHP
mySQL
Hi, i am having an interesting problem.
I have a form in my cms that allows the admin to upload images to the server. The script resizes the images to a thumbnail (170px height)and a …
0
votes
2answers
25 views
MySQL: Using REPLACE as part of an IN statement
I am trying to use REPLACE to substitute spaces for commas.
If I try SELECT REPLACE('1 2 3 4 5 6 7 86 9', ' ', ', '); then I get exactly what I need in a string.
However, if I try this as part of …
0
votes
1answer
20 views
Can’t install do_mysql gem?
I'm trying to install the do_mysql on my Snow Leopord system Macbook Pro 13", but I keep getting this error:
n216-160:~ myself$ sudo gem1.9 install do_mysql
Password:
Building native extensions. …
