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
8593b705
Commit
8593b705
authored
Jan 01, 2016
by
Alexander Butenko
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #396 from avbdr/master
fixes
parents
3c8898c5
f889dbc3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
3 deletions
+11
-3
MysqliDb.php
MysqliDb.php
+3
-1
readme.md
readme.md
+8
-2
No files found.
MysqliDb.php
View file @
8593b705
...
...
@@ -1331,7 +1331,9 @@ class MysqliDb
$isInsert
=
preg_match
(
'/^[INSERT|REPLACE]/'
,
$this
->
_query
);
$dataColumns
=
array_keys
(
$tableData
);
if
(
$isInsert
)
{
$this
->
_query
.=
' (`'
.
implode
(
$dataColumns
,
'`, `'
)
.
'`) VALUES ('
;
if
(
isset
(
$dataColumns
[
0
]))
$this
->
_query
.=
' (`'
.
implode
(
$dataColumns
,
'`, `'
)
.
'`) '
;
$this
->
_query
.=
' VALUES ('
;
}
else
{
$this
->
_query
.=
" SET "
;
}
...
...
readme.md
View file @
8593b705
...
...
@@ -18,7 +18,7 @@ MysqliDb -- Simple MySQLi wrapper and object mapper with prepared statements
**[Subqueries](#subqueries)**
**[EXISTS / NOT EXISTS condition](#exists--not-exists-condition)**
**[Has method](#has-method)**
**[Helper
Functions](#helper-comman
ds)**
**[Helper
Methods](#helper-metho
ds)**
**[Transaction Helpers](#transaction-helpers)**
### Installation
...
...
@@ -582,7 +582,7 @@ if($db->has("users")) {
return "Wrong user/password";
}
```
### Helper
comman
ds
### Helper
metho
ds
Reconnect in case mysql connection died:
```php
if (!$db->ping())
...
...
@@ -601,6 +601,12 @@ Check if table exists:
if ($db->tableExists ('users'))
echo "hooray";
```
mysqli_real_escape_string() wrapper:
```php
$escaped = $db->escape ("' and 1=1");
```
### Transaction helpers
Please keep in mind that transactions are working on innoDB tables.
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