Changeset 116 for trunk


Ignore:
Timestamp:
Aug 21, 2007, 11:34:16 PM (17 years ago)
Author:
rainer
Message:

Move to standard SQL escaping of single quotes for non-mysql db.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/sh_database.c

    r97 r116  
    15301530}
    15311531
    1532 static int is_escaped(const char * p_in) {
     1532static int is_escaped(char * p_in) {
    15331533
    15341534  int    escp = 0;
     
    15471547                    /* do nothing */;
    15481548                  else if (*p == '\\')
    1549                     escp = 1;
     1549                    {
     1550#ifndef WITH_MYSQL
     1551                      if (p[1] == '\'')
     1552                        {
     1553                          *p = '\'';
     1554                        }
     1555#endif
     1556                      escp = 1;
     1557                    }
    15501558                  else 
    15511559                    retv = S_FALSE; /* (*p == '\'' || *p == '\"') */
Note: See TracChangeset for help on using the changeset viewer.