Re: array2.equals(array1) how to show difference?

2014-02-28 Thread Byron Mann
Is it possible there is whitespace appended to some of the array values? Byron Mann Lead Engineer Architect HostMySite.com On Feb 27, 2014 7:32 PM, morchella morchella.delici...@gmail.com wrote: hey guys i have two, 2 dimensional arrays. they have 3 columns. i have used

Re: array2.equals(array1) how to show difference?

2014-02-28 Thread Adam Cameron
Bear in minf that when you sue the .equals() method, you are using a *Java* method, so it will also be considering differences in type too (eg: Long vs Double, etc). Plus casing differences too. To check stuff at a CFML level, write a recursive function which takes both arrays, and which loops

Re: array2.equals(array1) how to show difference?

2014-02-28 Thread morchella
ok that may be it. i have trinmed and lcased every thing, stripped out the html et. one array is populated from oracle, the other from mysql. weeks ago i had to put cfprocessingdirective pageencoding=UTF-8 in my cfc due to charecters coming in with odd junk. my reg cf comparison shows my data

Re: array2.equals(array1) how to show difference?

2014-02-28 Thread Adam Cameron
Just a note: cfprocessingdirective pageencoding=UTF-8 has no bearing whatsoever on the content of DATA, it only relates to the code within the file itself, so will not be relevant unless you are populating of of the arrays via actual code (which you are not, based on what you say here). --