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