Replaced quotes with normal character (Version: 8.0.0.M5 Character Encoding Issues #411)

This commit is contained in:
nbaars 2018-01-14 13:22:28 +01:00
parent 568fa82270
commit dec55d52ca

View File

@ -1,15 +1,29 @@
== Special Characters == Special Characters
[source]
----
/* */ are inline comments /* */ are inline comments
-- , # are line comments -- , # are line comments
'Select * from users where name = admin--and pass = pass'
Example: Select * from users where name = 'admin' --and pass = 'pass'
----
[source]
----
; allows query chaining ; allows query chaining
'Select * from users; drop table users;'
,+,|| allows string concatenation Example: Select * from users; drop table users;
----
[source]
----
',+,|| allows string concatenation
Char() strings without quotes Char() strings without quotes
'Select * from users where name = +char(27) or 1=1'
Example: Select * from users where name = '+char(27) or 1=1
----
== Special Statements == Special Statements