Commit f90b4ab8 authored by Jeffrey Way's avatar Jeffrey Way

Updated determinType method

parent 28653fcd
......@@ -130,6 +130,14 @@ class MysqlDB {
case 'integer':
$param_type[] = 'i';
break;
case 'blob':
$param_type[] = 'b';
break;
case 'double':
$param_type[] = 'd';
break;
}
return implode($param_type);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment