Replaced quotes with normal character (Version: 8.0.0.M5 Character Encoding Issues #411)
This commit is contained in:
parent
568fa82270
commit
dec55d52ca
@ -1,15 +1,29 @@
|
||||
== Special Characters
|
||||
|
||||
/* */ are inline comments
|
||||
-- , # are line comments
|
||||
'Select * from users where name = ‘admin’--and pass = ‘pass’'
|
||||
[source]
|
||||
----
|
||||
/* */ are inline comments
|
||||
-- , # are line comments
|
||||
|
||||
; allows query chaining
|
||||
'Select * from users; drop table users;'
|
||||
Example: Select * from users where name = 'admin' --and pass = 'pass'
|
||||
----
|
||||
|
||||
|
||||
[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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user