World: r3wp
[MySQL]
older newer | first last |
PeterWood 29-Mar-2006 [646] | I've just realised that I' have old_passwords set on and am using the latest version of Mysql-protocol.r :-( |
Pekr 29-Mar-2006 [647x3] | it should work too though ... |
it should distinguish, if the password is old or new style .... | |
but not sure, maybe Doc removed the "old" functionality, although I doubt it ... | |
PeterWood 29-Mar-2006 [650x2] | I solved the problem by installing the 0.99 version of mysql-protocol.r. It was quicker than trying to get XAMPP to accept a MySQL revised configuration file. |
Thanks for your help, Yek Soon and Petr. | |
james_nak 30-Mar-2006 [652] | What do you all use to check if a port is open? Instead of getting a port not open when trying to read the "inserted" SQL results. RIght now I'm using error? try [ a: copy db] where db is the object with the results. I don't know, it doesn't seem to work all that well. |
Thør 1-Apr-2006 [653] | . |
Will 26-Apr-2006 [654x2] | addad "s" to below line in mysql-protochol.r otherwise "s" get set in global space b0: b1: b2: b3: int: int24: long: string: field: len: byte: s: none |
read-field: [ (null-flag: false) read-length s: (either null-flag [field: none] [field: sys-copy/part s len s: skip s len]) :s ] | |
Dockimbel 8-May-2006 [656x2] | james: use the 'ping command: insert db [ping] (see driver documentation for more info on this command). |
Will: thanks, fix added. | |
Maarten 8-May-2006 [658x2] | Doc, will there be a new version of the mysql driver somewhere punlicly available? I get a can't connect on softinnov.org? |
*publicly | |
Dockimbel 8-May-2006 [660x2] | This one should work : http://softinnov.net/tmp/mysql-protocol.r |
still beta, need some more testing to make it 1.0 | |
Henrik 3-Jun-2006 [662] | the link is dead |
Dockimbel 3-Jun-2006 [663] | http://softinnov.org/tmp/mysql-protocol.r |
Henrik 3-Jun-2006 [664] | was the bad handshake problem ever solved? I'm getting it here. |
Dockimbel 3-Jun-2006 [665] | Workaround found for v4+ servers version, still testing for v3.x versions. |
Henrik 3-Jun-2006 [666] | so no hope for 5.0 just yet? |
Dockimbel 3-Jun-2006 [667] | It should work correctly for 5.0. |
Henrik 3-Jun-2006 [668] | would this be with support for old passwords enabled? |
Dockimbel 3-Jun-2006 [669x2] | The driver detects the server version, if it is 4 or above, it use the new passswords, if it is 3.x, it uses old passwords. |
If you want v5 with old password, I have to provide an option to allow that. | |
Henrik 3-Jun-2006 [671] | I had old passwords enabled because I thought it didn't support that :-) |
Dockimbel 3-Jun-2006 [672] | :-) |
Henrik 3-Jun-2006 [673] | but I still get the bad handshake |
Dockimbel 3-Jun-2006 [674] | Which server version ? How password was created ? |
Henrik 3-Jun-2006 [675x2] | server 5.0.21 |
I used mysql-admin to create the user. I don't know which method it uses | |
Dockimbel 3-Jun-2006 [677] | Thanks, I'll try with 5.0.21 + mysql-admin. |
Henrik 3-Jun-2006 [678x4] | looks like mysql-admin doesn't use PASSWORD() to create passwords |
that's the problem | |
works when I set it with PASSWORD() | |
hope that helps a bit | |
Dockimbel 3-Jun-2006 [682x2] | Sure it helps, thanks! |
I'll try to release an updated version this weekend that fix such case. | |
Henrik 3-Jun-2006 [684] | excellent |
Will 3-Jun-2006 [685] | dumb question.. is this a valid query? select i1.id,i1.ip,i1.session from isa i1,isa i2 where i1.ip=i2.ip and i1.session<>i2.session order by i1.ip about 70'000 records in isa running this query seams to crash/block the mysql server.. |
Allen 3-Jun-2006 [686x2] | not a well constructed query. unless my mental parser isn't working. You are asking for each and every row where it doesn't match the current row... now I don't think that is your true intent ... |
that would be something like 70,000 * 70,000 results | |
Tomc 4-Jun-2006 [688x2] | valid but not like useful , (or likely to finish soon) |
stating what you actually want to accomplish could help | |
Dockimbel 6-Jun-2006 [690] | Henrik: Can yo give me the mysqladmin command line you're using to create a new user ? |
Henrik 6-Jun-2006 [691x2] | mysql-admin is a GUI client. |
I'll see if I can find some docs on it. it's the client you can download from mysql.com | |
Dockimbel 6-Jun-2006 [693] | Ok, so you mean MySQL Administrator (and not the mysqladmin.exe command line tool). |
Henrik 6-Jun-2006 [694x2] | it's called "mysql-admin" under linux. looks like your name is correct. |
http://dev.mysql.com/downloads/administrator/1.1.html<--- that one | |
older newer | first last |