diff OrthancServer/DatabaseWrapperBase.cpp @ 1758:318c2e83c2bd db-changes

fix
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 28 Oct 2015 12:53:45 +0100
parents 55d52567bebb
children 51db4a25a741
line wrap: on
line diff
--- a/OrthancServer/DatabaseWrapperBase.cpp	Wed Oct 28 12:29:12 2015 +0100
+++ b/OrthancServer/DatabaseWrapperBase.cpp	Wed Oct 28 12:53:45 2015 +0100
@@ -743,7 +743,7 @@
         break;
 
       case IdentifierConstraintType_Wildcard:
-        s.reset(new SQLite::Statement(db_, std::string(COMMON) + "d.value LIKE ?"));
+        s.reset(new SQLite::Statement(db_, std::string(COMMON) + "d.value GLOB ?"));
         break;
 
       default: