Forum: MySQL 9 Hours Ago |
| Replies: 3 Views: 66 |
Forum: MySQL 9 Days Ago |
| Replies: 10 Views: 267 Re: MySQL Error 1064 when DELETEing You were trying to run multiple sql statements with a single mysql_query() call which is not supported. If you need to run multiple queries in a single call, then consider the use of... |
Forum: MySQL 9 Days Ago |
| Replies: 10 Views: 267 |
Forum: MySQL 12 Days Ago |
| Replies: 2 Views: 261 Re: Image Database trudge is right, there is no point to save images in database. Displaying images from databse is relatively slow than filesystem. But if you still want to save images in database, take a look this... |
Forum: MySQL 12 Days Ago |
| Replies: 2 Views: 226 Re: SMS Message and Email Message You can create database with either of them. Sending an SMS will cost you but email does not. To send SMS, you need a SMS gatewy like clickatell.com. |
Forum: MySQL 15 Days Ago |
| Replies: 2 Views: 199 |
Forum: MySQL 17 Days Ago |
| Replies: 2 Views: 215 |
Forum: MySQL 21 Days Ago |
| Replies: 1 Views: 255 Re: Automate Query You can create a script (PHP/shell) to move data and set the cronjob to run it every hour/day. |
Forum: MySQL 21 Days Ago |
| Replies: 6 Views: 321 |
Forum: MySQL 25 Days Ago |
| Replies: 1 Views: 227 Re: mysql What do you expect from the code and how it is behaving?
trim($searchterm);
should be
$searchterm = trim($searchterm); |
Forum: MySQL 27 Days Ago |
| Replies: 3 Views: 335 |
Forum: MySQL 33 Days Ago |
| Replies: 1 Views: 329 |
Forum: MySQL 33 Days Ago |
| Replies: 7 Views: 248 |
Forum: MySQL 33 Days Ago |
| Replies: 1 Views: 155 Re: help for log files These are data files. To recover data try these links
http://code.google.com/p/innodb-tools/
http://www.percona.com/services/data-recovery-services-mysql.html
As per my knowledge, you can get INSERT... |
Forum: PHP 33 Days Ago |
| Replies: 2 Views: 363 |
Forum: MySQL Mar 30th, 2008 |
| Replies: 3 Views: 182 |
Forum: MySQL Mar 30th, 2008 |
| Replies: 3 Views: 182 |
Forum: MySQL Mar 29th, 2008 |
| Replies: 2 Views: 207 Re: Database Problem......... In PhpMyAdmin on selecting a table from left frame you will see the related options in right side of the page. Select the option Import and provide the CSV file path. Then select CSV and the related... |
Forum: MySQL Mar 28th, 2008 |
| Replies: 3 Views: 324 Re: how to use same database for two domains? In order to work, you need to allow the mysql username (and your host also must allow this) to connect from remote machine. In host, you need to provide the IP or the domain name e.g. domain1.com and... |
Forum: MySQL Mar 28th, 2008 |
| Replies: 7 Views: 340 Re: table does not exist Are you using the same mysql username with PHP and with GUI to confirm the table existance? May be they have rights issue. |
Forum: MySQL Mar 28th, 2008 |
| Replies: 7 Views: 340 |
Forum: MySQL Mar 28th, 2008 |
| Replies: 5 Views: 212 Re: Recommended books? I always consulted MySQL Manual and Google and never read MySQL book. Did you look at MySQL Press books?
If you can get one from 'Unleashed ...' series from SAMS Publishing, i think it would be... |
Forum: MySQL Mar 27th, 2008 |
| Replies: 4 Views: 321 Re: mysql Dani, is he asking about DaniWeb.com's root access?:) |
Forum: MySQL Mar 24th, 2008 |
| Replies: 1 Views: 562 Re: How do I SELECT FROM a subquery? This should give you the required output
SELECT m_id, COUNT(*)
FROM taglink
WHERE m_id <> '25'
AND t_id
IN (
SELECT t_id
FROM taglink
WHERE m_id = '25' |
Forum: MySQL Mar 22nd, 2008 |
| Replies: 15 Views: 345 Re: ISP issues with INNODB I personally like www.liquidweb.com as I have referral link on my site as well :). We have dedicated servers with them. They are bit expensive but are really good. You can check hosting forums to get... |
Forum: MySQL Mar 22nd, 2008 |
| Replies: 15 Views: 345 |
Forum: MySQL Mar 21st, 2008 |
| Replies: 15 Views: 345 |
Forum: MySQL Mar 21st, 2008 |
| Replies: 2 Views: 218 |
Forum: MySQL Mar 21st, 2008 |
| Replies: 15 Views: 345 Re: ISP issues with INNODB I never worked with POSTGRESQL so I can't say anything about it. It also has community support like MySQL but after SUN acquiring MySQL things may go much faster in the favor of MySQL. |
Forum: MySQL Mar 21st, 2008 |
| Replies: 15 Views: 345 |
Forum: MySQL Mar 21st, 2008 |
| Replies: 15 Views: 345 Re: ISP issues with INNODB Do you have any other concerns?
To get best performance from InnoDB the MySQL server should be tuned for that :) |
Forum: MySQL Mar 20th, 2008 |
| Replies: 15 Views: 345 Re: ISP issues with INNODB Easy and quick fix is to change the host. There is a lot of good hosts around which provide hosting services.
I do not recommend doing this. You need more time, resources, good understanding of the... |
Forum: MySQL Mar 19th, 2008 |
| Replies: 5 Views: 469 |
Forum: MySQL Mar 19th, 2008 |
| Replies: 5 Views: 469 Re: Incorrect string value There might be some issue with file encoding. Because these queries can be executed without any problem if run on command prompt/GUI.
So the only thing that can create problem is file. |
Forum: MySQL Mar 19th, 2008 |
| Replies: 5 Views: 469 |
Forum: MySQL Mar 18th, 2008 |
| Replies: 3 Views: 323 |
Forum: MySQL Mar 17th, 2008 |
| Replies: 5 Views: 241 Re: is my code correct? And
$result = mysql_query("SELECT * FROM images WHERE 'Broad1'='$thumb_name'");
Should be
$result = mysql_query("SELECT * FROM images WHERE Broad1='$thumb_name'");
No quotes around Broad1. |
Forum: MySQL Mar 16th, 2008 |
| Replies: 1 Views: 346 Re: MySql Remote Connection - Hacking? If this is not your application then it should be some person whether it is you, your co-worker or some hacker. As a first step, install a firewall on your dedicated server (apf is very good if you... |
Forum: MySQL Mar 16th, 2008 |
| Replies: 1 Views: 147 Re: help I keep getting this You have a problem with your MySQL query. To indentify the problem, use mysql_error() (http://php.net/mysql_error) e.g.
mysql_query("some select statement here") or die("QUERY ERROR:... |