├── .gitattributes ├── .gitignore ├── README.md ├── example ├── account_bcrypt.pwn └── account_sha256.pwn ├── mysql_prepared.inc ├── pawn.json └── test.pwn /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickGTR/MySQL-Prepared-Statements/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickGTR/MySQL-Prepared-Statements/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickGTR/MySQL-Prepared-Statements/HEAD/README.md -------------------------------------------------------------------------------- /example/account_bcrypt.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickGTR/MySQL-Prepared-Statements/HEAD/example/account_bcrypt.pwn -------------------------------------------------------------------------------- /example/account_sha256.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickGTR/MySQL-Prepared-Statements/HEAD/example/account_sha256.pwn -------------------------------------------------------------------------------- /mysql_prepared.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickGTR/MySQL-Prepared-Statements/HEAD/mysql_prepared.inc -------------------------------------------------------------------------------- /pawn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickGTR/MySQL-Prepared-Statements/HEAD/pawn.json -------------------------------------------------------------------------------- /test.pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickGTR/MySQL-Prepared-Statements/HEAD/test.pwn --------------------------------------------------------------------------------