Is it possible to perform case-insensitive query for SugarCRM get_entry_list method call?
Currently I have:
$email = abc@test.com;
$get_entry_list = array(
'session' => 'sugar_session_id',
'module_name' => 'sugarUser',
'query' => "ea_su_second_email_c='".$email."'",
'order_by' => "",
'offset' => 0,
'select_fields' => array('id','first_name','last_name','ea_su_second_email_c'),
'max_results' => 50,
'deleted' => 0,
'favorites' => false,
);
I want this query to return no result if
$email = Abc@test.com; // A as capital
Is it possible?