Don't quote numbers in a query, as it doesn't parse correctly.

oldstable
Mike McCormack 2005-09-28 11:59:16 +00:00 committed by Alexandre Julliard
parent bd6f176df9
commit 3c37734f96
1 changed files with 1 additions and 1 deletions

View File

@ -633,7 +633,7 @@ static UINT HANDLE_CustomType19(MSIPACKAGE *package, LPCWSTR source,
'S','E','L','E','C','T',' ','`','M','e','s','s','a','g','e','`',' ',
'F','R','O','M',' ','`','E','r','r','o','r','`',' ',
'W','H','E','R','E',' ','`','E','r','r','o','r','`',' ','=',' ',
'\'','%','s','\'',0
'%','s',0
};
MSIRECORD *row = 0;
LPWSTR deformated = NULL;