Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
PHP-MySQLi-Database-Class
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
PHP-MySQLi-Database-Class
Commits
be8b612f
Commit
be8b612f
authored
Dec 31, 2015
by
Alexander Butenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add escape() mention in the readme
parent
873077a6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
readme.md
readme.md
+8
-2
No files found.
readme.md
View file @
be8b612f
...
@@ -18,7 +18,7 @@ MysqliDb -- Simple MySQLi wrapper and object mapper with prepared statements
...
@@ -18,7 +18,7 @@ MysqliDb -- Simple MySQLi wrapper and object mapper with prepared statements
**[Subqueries](#subqueries)**
**[Subqueries](#subqueries)**
**[EXISTS / NOT EXISTS condition](#exists--not-exists-condition)**
**[EXISTS / NOT EXISTS condition](#exists--not-exists-condition)**
**[Has method](#has-method)**
**[Has method](#has-method)**
**[Helper
Functions](#helper-comman
ds)**
**[Helper
Methods](#helper-metho
ds)**
**[Transaction Helpers](#transaction-helpers)**
**[Transaction Helpers](#transaction-helpers)**
### Installation
### Installation
...
@@ -582,7 +582,7 @@ if($db->has("users")) {
...
@@ -582,7 +582,7 @@ if($db->has("users")) {
return "Wrong user/password";
return "Wrong user/password";
}
}
```
```
### Helper
comman
ds
### Helper
metho
ds
Reconnect in case mysql connection died:
Reconnect in case mysql connection died:
```php
```php
if (!$db->ping())
if (!$db->ping())
...
@@ -601,6 +601,12 @@ Check if table exists:
...
@@ -601,6 +601,12 @@ Check if table exists:
if ($db->tableExists ('users'))
if ($db->tableExists ('users'))
echo "hooray";
echo "hooray";
```
```
mysqli_real_escape_string() wrapper:
```php
$escaped = $db->escape ("' and 1=1");
```
### Transaction helpers
### Transaction helpers
Please keep in mind that transactions are working on innoDB tables.
Please keep in mind that transactions are working on innoDB tables.
Rollback transaction if insert fails:
Rollback transaction if insert fails:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment