I'm currently trying to write a short SQL expression that will give me a
rough estimate of the disk-space usage of a particular bunch of rows in
a table.
For table 'example':
CREATE TABLE `example` (
`id` int(11) NOT NULL auto_increment,
`blah` varchar(255) NOT NULL default '',
`blah2` lon
Mark Matthews wrote:
[ ... ]
Mike Moran wrote:
I've been looking into what algorithm MySQL 4.1.7 uses for password
hashing/encryption, with a view to ascertaining how secure it is. Does
it conform to any combinations of published Specs e.g. MD5/SHA-1/etc?
[ ... ]
Mike,
MySQL-4.1.7 uses
I've been looking into what algorithm MySQL 4.1.7 uses for password
hashing/encryption, with a view to ascertaining how secure it is. Does
it conform to any combinations of published Specs e.g. MD5/SHA-1/etc?
I had a look at com.mysql.jdbc.Util#newHash() and #newCrypt() in
Connector/J 3.0, but