1
vote
Mysql Datetime with Time zone
Save the timezone in an extra column or do the conversion before saving the datetime value depending on your needs.
Starting from Mysql 4.1.3 you can use the …
0
votes
MySQL: How to find all IDs of children recursively?
You could probably do it with a stored procedure, if that's an option for you.
Otherwise you can't do it with a single sql-statement.
Ideally you should make the recursive calls to …
0
votes
How should mysql be optimized/tuned for lots of writes and few reads (100:1). Read perf reqd.
I suggest you do write/read splitting by setting up a mysql master-slave configuration.
You write to the master and redirect reads to the slaves.
The splitting itself can be done in …
5
votes
2
votes
Wikipedia integration issue - need to finally sort this out 101
How about using one of the Wikipedia Geocoding Webservices
There are several avail …
0
votes
0
votes
how to enable innodb in Noinstall Zip Archive MySQL version
Don't use the mysqld-nt executable use the mysqld executable. If I remember correctly mysqld-nt hasn't innodb support compiled in.
…
2
votes
Running a .sql script using mysql with jdbc
There isn't really a way to do this.
You could either run the mysql command line client via Runtime.exec(String[]) and read …
1
vote
Running a .sql script using mysql with jdbc
Ok. You can use this class here (posted on pastebin because of file length) in your project. But remember to keep the apache license info.
…
0
votes
how to format date field in MYSQL
Check the documentation for this function in MySQL
DATE_FORMAT(date, form …
0
votes
Diacritic insensitive mysql search?
Did you already read all of MySQL Character Set Support to check if the answer to your question isn't already there? …
4
votes
1
vote
JDBC, MySQL: getting bits into a BIT(M!=1) column
To set a BIT(M) column in MySQL
For M==1
setBoolean(int parameterIndex, boolean x)
From the javadoc
Sets t …
1
vote
PHP Array Duplicates
Just change the SQL Query to
SELECT vinename, COUNT(vinename) as counter FROM vines GROUP BY vinename
and then do
echo $row['vinename']." #".$row[' …
2
votes
How does one do a multi table UPDATE in MYSQL 5.1 using ‘ORDER BY’ and ‘LIMIT’ statments
From the MySQL UPDATE Syntax documentation
For the multiple-table syntax, UPDATE
updates ro …
