Top "Mysql5" questions

The MySQL™ software delivers a very fast, multi-threaded, multi-user, and robust SQL (Structured Query Language) database server.

How to get a list of user accounts using the command line in MySQL?

I'm using the MySQL command line utility and can navigate through a database. Now I need to see a list …

mysql command-line mysql5
Can't connect to MySQL server on 'localhost' (10061)

I recently installed MySQL 5 on Windows 2003 and tried configuring an instance. Everything worked fine until I got to "Applying Security …

mysql localhost mysql5 windows-firewall
MySQL 1062 - Duplicate entry '0' for key 'PRIMARY'

I have the following table in MySQL version 5.5.24 DROP TABLE IF EXISTS `momento_distribution`; CREATE TABLE IF NOT EXISTS `momento_…

mysql sql mysql5
Are table names in MySQL case sensitive?

Are table names in MySQL case sensitive? On my Windows development machine the code I have is able to query …

mysql case-sensitive mysql5
storing negative value in mysql

How can I store negative value in mysql decimal? I have data from DMS to Decimal having negative values, so …

mysql decimal mysql5 negative-number
"You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax error" Hibernate 4

I'm getting the error I added below while saving Folder entities into database using Hibernate 4.1 & MySQL 5. I don't have …

mysql spring hibernate mysql5
JDBC Driver class not found: com.mysql.jdbc.Driver

I am developing a web application using maven spring and hibernate and I need to create schema using hibernate for …

jdbc web-applications mysql5 hibernate3
MySQL efficiently copy all records from one table to another

Is there a more-efficent, less laborious way of copying all records from one table to another that doing this: INSERT …

mysql sql insert mysql5
org.apache.tomcat.dbcp.dbcp.SQLNestedException: Cannot create JDBC driver of class '' for connect URL 'null'

Hi When I try to connect to the datasource using JNDI, I am getting this error: [org.apache.tomcat.dbcp.…

tomcat6 jndi mysql5 apache-roller
How to replace all double quotes to single quotes using mysql replace?

I need to replace all double quotes to single quotes using mysql query. How can I do that. My sql …

mysql sql escaping quotes mysql5