Skip to content
Snippets Groups Projects
Commit c2c86666 authored by Giovannoni Laurent's avatar Giovannoni Laurent
Browse files

fix: pb with returning code

parent c2655adc
No related branches found
No related tags found
No related merge requests found
...@@ -379,7 +379,7 @@ class dbquery extends functions ...@@ -379,7 +379,7 @@ class dbquery extends functions
if(count($params) > 0) { if(count($params) > 0) {
//echo "<br/>Params to bind:"; var_dump($params); //echo "<br/>Params to bind:"; var_dump($params);
foreach($params as $paramname => &$paramvar) { foreach($params as $paramname => &$paramvar) {
$binded = oci_bind_by_name($this->query, $paramname, $paramvar, -1, SQLT_CHR); $binded = oci_bind_by_name($this->query, $paramname, $paramvar, 100, SQLT_CHR);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment