aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPSQLTokenizer.h
Commit message (Collapse)AuthorAgeFilesLines
* • implemented a new approach to split a string into single SQL statements ↵Bibiko2009-05-191-1/+2
| | | | | | | | by using the lexer SPTokenizer - the new method is called splitStringIntoRangesOfSQLQueries: in SPSQLParser - in CustomQuery's method queryAtPosition: can be found a test case which is as default not activated - must be improved further
* More header updates for source files, including Subversion Id property.stuconnolly2009-05-191-0/+2
|
* • optimized SQLtokenizer lexerBibiko2009-05-141-10/+5
|
* • added SPSQLTokenizerBibiko2009-05-141-0/+32
- this is an approach to make usage of lex to split a string very fast into SQL queries considering the "delimiter" switch and compound-statements via CREATE ... BEGIN ... END; without using "delimiter"
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177