Search Results

2
votes

Practical limit to length of SQL query (specifically MySQL)

http://dev.mysql.com/doc/refman/5.0/en/packet-too-large.html Configurable with a limit of 1GB in 5. …
3
votes

What is the best solution for database connection pooling in python?

Wrap your connection class. Set a limit on how many connections you make. Return an unused connection. Intercept close to free the connection. Update: …
1
vote

MySQL triggers + replication with multiple databases.

This may have something to do with it: A stored function acquires table locks before executing, to avoid inconsistency in the binary log due to mismatch of the order in which statements exe …
1
vote

Can’t connect to MySQL server on ‘localhost’ (10061)

You'll probably have to grant 'localhost' privileges to on the table to the user. See the 'GRANT' syntax documentation. Here's an example (from some C source). "GRANT ALL PRIVILEGES ON %s …
1
vote

Preventing Mongrel/Mysql Errno::EPIPE exceptions

Here's a solution: https://boxpanel.blueboxgrp.com/public/the_vault/index.php/Mongrel_/_MySQL_Timeout The timeouts on the above solution seem a little high to me. You don't want yo …
2
votes

mysql replication - table locking?

If you change your table types to innodb, row level locking is used. Also, your replication will be more stable, as updates will be transactional. MyISAM replication is a long-term pain. …
0
votes

mysql replication - table locking?

The solution with the myisam table type is not 'better'. However, you can get by with it. The best you can do, is make sure your slave and master run on the same hardware (FPU differences …
1
vote

What’s the best method to use / store encryption keys in MySQL

It seems that you are considering the use of a 'column-specific' key to use with 'AES_ENCRYPT' and 'AES_DECRYPT'. As the commenter said, this is a bad idea, because any intrusion will have access …