---------------------------------------------------------------------------
| 1401 | } |
| 1402 | //--------------------------------------------------------------------------- |
| 1403 | int iscodedelim(char c) |
| 1404 | { |
| 1405 | if( strchr("+-*^/=;(),&|<>% \t\r", c) || c==0 ) return 1; |
| 1406 | return 0; |
| 1407 | } |
| 1408 | //--------------------------------------------------------------------------- |
| 1409 | AnsiString __fastcall MakePostgresString(AnsiString source, int maxlen) |
| 1410 | { |
nothing calls this directly
no outgoing calls
no test coverage detected