Slight error in plug in "Server-side processing | PHP with Oracle"
Slight error in plug in "Server-side processing | PHP with Oracle"
jerome_jay
Posts: 6Questions: 0Answers: 0
Hello,
I just wanted to signal a little issue in this plugin ( http://www.datatables.net/development/server-side/php_oracle )
line 246 and 247:
[code]
oci_bind_by_name($statmntFinal, ':whereSpecificParam '.$i , $sWhereSpecificArray[$i]);
oci_bind_by_name($statmntFinalCount, ':whereSpecificParam '.$i , $sWhereSpecificArray[$i]);
[/code]
there is a space between "Param" and "'.$i" which prevents from filtering by columns.
ps: thanks to the guy who wrote it ! it works great :) (although I spent 1h to figure out this issue - but that happens ;)).
pps: if that's not the right way to report this bug, let me know or please forward it
I just wanted to signal a little issue in this plugin ( http://www.datatables.net/development/server-side/php_oracle )
line 246 and 247:
[code]
oci_bind_by_name($statmntFinal, ':whereSpecificParam '.$i , $sWhereSpecificArray[$i]);
oci_bind_by_name($statmntFinalCount, ':whereSpecificParam '.$i , $sWhereSpecificArray[$i]);
[/code]
there is a space between "Param" and "'.$i" which prevents from filtering by columns.
ps: thanks to the guy who wrote it ! it works great :) (although I spent 1h to figure out this issue - but that happens ;)).
pps: if that's not the right way to report this bug, let me know or please forward it
This discussion has been closed.