Refactor AppRegistry to support multi-thread concurrency
[platform/framework/native/appfw.git] / src / io / FIo_DatabaseImpl.cpp
index 4728f7f..9237e56 100644 (file)
@@ -856,7 +856,7 @@ _DatabaseImpl::QueryN(const String& query)
                pQuery++;
        }
 
-       if (strncasecmp(pQuery, "select", 6) != 0)
+       if ((strncasecmp(pQuery, "select", 6) != 0) && (strncasecmp(pQuery, "PRAGMA", 6) != 0))
        {
                r = E_INVALID_OPERATION;
                goto CATCH;