Removed a call to Upper() on the table name when building an UPDATE statement. Patch #488365 submitted by Christophe Massaloux
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12841 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1121,7 +1121,7 @@ void wxDbTable::BuildUpdateStmt(wxString &pSqlStmt, int typeOfUpd, const wxStrin
|
|||||||
bool firstColumn = TRUE;
|
bool firstColumn = TRUE;
|
||||||
|
|
||||||
pSqlStmt.Printf(wxT("UPDATE %s SET "),
|
pSqlStmt.Printf(wxT("UPDATE %s SET "),
|
||||||
pDb->SQLTableName(tableName.Upper().c_str()).c_str());
|
pDb->SQLTableName(tableName.c_str()).c_str());
|
||||||
|
|
||||||
// Append a list of columns to be updated
|
// Append a list of columns to be updated
|
||||||
int i;
|
int i;
|
||||||
|
Reference in New Issue
Block a user