[asterisk-bugs] [Asterisk 0011353]: Problem with Like query on MS SQL

noreply at bugs.digium.com noreply at bugs.digium.com
Thu Nov 22 17:35:32 CST 2007


A NOTE has been added to this issue. 
====================================================================== 
http://bugs.digium.com/view.php?id=11353 
====================================================================== 
Reported By:                apsaras
Assigned To:                
====================================================================== 
Project:                    Asterisk
Issue ID:                   11353
Category:                   PBX/pbx_realtime
Reproducibility:            always
Severity:                   minor
Priority:                   normal
Status:                     new
Asterisk Version:           1.4.14  
SVN Branch (only for SVN checkouts, not tarball releases): N/A  
SVN Revision (number only!):  
Disclaimer on File?:        N/A 
Request Review:              
====================================================================== 
Date Submitted:             11-22-2007 16:37 CST
Last Modified:              11-22-2007 17:35 CST
====================================================================== 
Summary:                    Problem with Like query on MS SQL
Description: 
The problem is the MSSQL server does not support back slash "\" as escape
character on select queries hence when you execute 

SELECT * FROM extensions WHERE exten LIKE '\_%' AND context = 'default'
AND priority = '1' ORDER BY exten

is not working. The correct and most commonly used syntax is

SELECT * FROM extensions WHERE exten LIKE '[_]%' AND context = 'default'
AND priority = '1' ORDER BY exten

As far as I concern this is compatible with mySQL and PostgreSQL.

The solution I propose is to change the line 

cfg = ast_load_realtime_multientry(table, "exten LIKE", "\\_%", "context",
context, "priority", pri, NULL);

at pbx_realtime.c to 

cfg = ast_load_realtime_multientry(table, "exten LIKE", "[_]%", "context",
context, "priority", pri, NULL);
====================================================================== 

---------------------------------------------------------------------- 
 Corydon76 - 11-22-07 17:35  
---------------------------------------------------------------------- 
The fact that you quoted this syntax tells me that you aren't using 1.4.14.
 Please upgrade to that version and try again.  This problem has already
been fixed, in a different way. 

Issue History 
Date Modified   Username       Field                    Change               
====================================================================== 
11-22-07 17:35  Corydon76      Note Added: 0074217                          
======================================================================




More information about the asterisk-bugs mailing list