242 reputation
18
bio website
location
age
visits member for 2 years, 3 months
seen May 18 at 16:41
stats profile views 57

May
13
comment jython - is there a way to avoid having to use “super__” methods?
thanks... but I wouldn't have gone to such lengths if the answer were this easy. The point is to cater for a situation where you don't know whether the base class is a Java (proxy) class or a "genuine" Jython class, derived from a Java (proxy) class lower down the hierarchy. Perhaps you're just hoping that Jython is as simple as Python... but no, there is a price to be paid for the incredible power of combining Java and Python...
Apr
26
comment character encoding puzzle with PHP/MS Access
ah, just one fly in the ointment (not that surprising)... it seems that linebreaks in Access "Memo" fields are completely ignored (I've split the incoming string up into chars)... These linebreaks have always been problematic... think I'll probably convert to MySQL in due course, but thanks very much
Apr
26
accepted character encoding puzzle with PHP/MS Access
Apr
26
comment character encoding puzzle with PHP/MS Access
you're a genius! I find I have to do a reverse encoding with the returned stuff (I'm doing it within the PHP file not at the CLI)... so I go echo mb_convert_encoding( $row[ 'Def' ], 'UTF-8', 'Windows-1252');
Apr
26
comment character encoding puzzle with PHP/MS Access
@cleong wow... OK I have 2 plan Bs, one to try mysqli, the other to convert the MS Access dbase to MySQL... this is feasible. I'm just surprised!
Apr
26
comment character encoding puzzle with PHP/MS Access
@silkfire... no, no weird characters at that point, it's about the communication between this script and MS Access
Apr
26
comment character encoding puzzle with PHP/MS Access
@cleong your comments have made me suspect that the PHP is the culprit here... if it works OK in Jython it seems like MS Access is able to handle the UTF-8 sent to it... thing is it seems such a basic question!
Apr
26
revised character encoding puzzle with PHP/MS Access
added 102 characters in body
Apr
26
comment character encoding puzzle with PHP/MS Access
actually no it doesn't matter if the other program stops working... it is certainly seems likely to me (not that I know much about it) that utf8_decode should work... if ever I do get any output from the dbase... the problem is that either the PHP or the dbase is doing something funny with the text sent to it... that's really what I'm trying to get to understand
Apr
26
comment character encoding puzzle with PHP/MS Access
@cleong thanks... this makes sense. Any idea how I can tackle the question of incorrect dbase encoding? Thing is I already have another program, written in Jython (i.e. Java) which manages this lookup function (on this database) without any problems... including with French accented characters.
Apr
26
revised character encoding puzzle with PHP/MS Access
added 184 characters in body
Apr
26
comment character encoding puzzle with PHP/MS Access
token is taken from a GET string... I'll put those lines in
Apr
26
asked character encoding puzzle with PHP/MS Access
Apr
12
comment Difference between using var and not using var in JavaScript
@RyuKaplan - hey, is that true? I tried googling and couldn't get any info on the subject! Do you have a source authority for that assertion? Thx
Mar
27
accepted Javascript - where are the name and message properties of Error object?
Mar
27
revised Javascript - where are the name and message properties of Error object?
added 245 characters in body
Mar
27
comment Javascript - where are the name and message properties of Error object?
Thanks! Now the question you've all been waiting for: how do I find what non-enumerable properties there are? I know, I know: they're non-enumerable, so you can't enumerate them! Is this the answer? In languages with which I'm more familiar there are usually options to "inspect" an object ... anything like that in JS?
Mar
27
comment Javascript - where are the name and message properties of Error object?
@Beetroot-Beetroot Yes I had found that page... hence my surprise that these two "properties" (if that is what they are) are not actually listed using the for ... in loop above... I remain puzzled
Mar
27
revised Javascript - where are the name and message properties of Error object?
added 441 characters in body
Mar
27
asked Javascript - where are the name and message properties of Error object?