[asterisk-bugs] [Asterisk 0011353]: Problem with Like query on MS SQL
noreply at bugs.digium.com
noreply at bugs.digium.com
Fri Jan 18 16:03:09 CST 2008
The following issue has been REOPENED.
======================================================================
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: 01-18-2008 16:03 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);
======================================================================
----------------------------------------------------------------------
apsaras - 01-18-08 16:03
----------------------------------------------------------------------
I am sorry to report that the problem is not resolved. We installed 1.4.17
before a few days and we had to apply the patch we suggested in order to
have the Like at MS SQL to work.
Issue History
Date Modified Username Field Change
======================================================================
01-18-08 16:03 apsaras Status closed => new
01-18-08 16:03 apsaras Resolution fixed => reopened
01-18-08 16:03 apsaras Note Added: 0080881
======================================================================
More information about the asterisk-bugs
mailing list