Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pquery
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Taddeüs Kroes
pquery
Commits
88a7bc77
Commit
88a7bc77
authored
Dec 05, 2011
by
Taddeus Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added shortcut functions insert and delete, and affected_rows to SQL plugin including tests.
parent
a29fafb5
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
140 additions
and
13 deletions
+140
-13
pquery.sql.php
pquery.sql.php
+93
-10
test/test_sql.php
test/test_sql.php
+47
-3
No files found.
pquery.sql.php
View file @
88a7bc77
...
...
@@ -152,14 +152,24 @@ class pQuerySql extends pQuery implements pQueryExtension {
* Find the number of resulting rows of the current query.
*
* @returns int The number of result rows.
* @uses mysql_num_rows
*/
function
result_count
()
{
function
num_rows
()
{
$this
->
assert_execution
();
if
(
!
$this
->
result
)
return
0
;
return
is_resource
(
$this
->
result
)
?
mysql_num_rows
(
$this
->
result
)
:
0
;
}
/**
* Find the number of rows affected by the current query.
*
* @returns int The number of affected rows.
* @uses mysql_affected_rows
*/
function
affected_rows
()
{
$this
->
assert_execution
();
return
mysql_num_rows
(
$this
->
result
)
;
return
is_resource
(
$this
->
result
)
?
mysql_affected_rows
(
$this
->
result
)
:
0
;
}
/**
...
...
@@ -171,8 +181,8 @@ class pQuerySql extends pQuery implements pQueryExtension {
function
fetch
(
$type
=
self
::
DEFAULT_FETCH_TYPE
)
{
$this
->
assert_execution
();
if
(
!
$this
->
result
)
return
self
::
error
(
'
No valid result to fetch from
.'
);
if
(
!
is_resource
(
$this
->
result
)
)
return
self
::
error
(
'
Query result is not a resource
.'
);
$func
=
'mysql_fetch_'
.
$type
;
...
...
@@ -191,9 +201,8 @@ class pQuerySql extends pQuery implements pQueryExtension {
function
fetch_all
(
$type
=
self
::
DEFAULT_FETCH_TYPE
)
{
$results
=
array
();
while
(
(
$row
=
$this
->
fetch
(
$type
))
!==
false
)
{
while
(
(
$row
=
$this
->
fetch
(
$type
))
!==
false
)
$results
[]
=
$row
;
}
return
$results
;
...
...
@@ -288,7 +297,7 @@ class pQuerySql extends pQuery implements pQueryExtension {
*/
static
function
mysql_error
(
$query
=
''
)
{
$error
=
sprintf
(
'MySQL error %d: %s.'
,
mysql_errno
(),
mysql_error
());
PQUERY_DEBUG
&&
$error
.=
"
\n
Query: "
.
$
this
->
query
;
PQUERY_DEBUG
&&
$error
.=
"
\n
Query: "
.
$query
;
self
::
error
(
$error
);
}
...
...
@@ -303,7 +312,6 @@ class pQuerySql extends pQuery implements pQueryExtension {
static
function
error
(
$error
/* [ , $arg1 [ , ... ] ] */
)
{
$args
=
func_get_args
();
call_user_func_array
(
'pQuery::error'
,
$args
);
//parent::error('SQL error %d: %s.', mysql_errno(), mysql_error());
return
false
;
}
...
...
@@ -319,6 +327,81 @@ class pQuerySql extends pQuery implements pQueryExtension {
return
mysql_real_escape_string
(
$value
,
self
::
$link
);
}
/**
* Insert a record in the given table.
*
* @param string $table The table to insert into.
* @param array $values The values to insert, pointed to by their column names.
* @param bool $escape Whether to escape the values. Defaults to TRUE.
* @returns pQuerySql The created query instance.
*/
static
function
insert_row
(
$table
,
$values
,
$escape
=
true
)
{
$columns
=
array_keys
(
$values
);
$escape
&&
array_walk
(
$values
,
'pQuerySql::escape'
);
return
_sql
(
'INSERT INTO `[table]`([columns]) VALUES([values]);'
)
->
set_unescaped
(
array
(
'table'
=>
$table
,
'columns'
=>
"`"
.
implode
(
"`, `"
,
$columns
)
.
"`"
,
'values'
=>
"'"
.
implode
(
"', '"
,
$values
)
.
"'"
));
}
/**
* Delete all record from the given table that match the constraints.
*
* @param string $table The table to insert into.
* @param array $constraints Column names pointing to their values
* @param bool $escape Whether to escape the constraint values. Defaults to TRUE.
* @returns pQuerySql The created query instance.
*/
static
function
delete
(
$table
,
$constraints
,
$escape
=
true
)
{
return
_sql
(
'DELETE FROM `[table]` WHERE [constraints];'
)
->
set_unescaped
(
array
(
'table'
=>
$table
,
'constraints'
=>
self
::
parse_constraints
(
$constraints
,
$escape
)
));
}
/**
* Parse a list of constraints.
*
* @param mixed $constraints One of:
* - A variable that evaluates as "empty", which will yield the string '1'.
* - A string, which will be returned unchanged.
* - A list of column names pointing to their values.
* @param bool $escape Whether to escape the values.
* @returns string The parsed constraints.
*/
static
function
parse_constraints
(
$constraints
,
$escape
)
{
if
(
empty
(
$constraints
)
)
return
"1"
;
if
(
is_string
(
$constraints
)
)
return
$constraints
;
if
(
!
is_array
(
$constraints
)
)
return
self
::
error
(
'Unknown constraints type.'
);
$conditions
=
array
();
foreach
(
$constraints
as
$column
=>
$value
)
{
$condition
=
"`
$column
` "
;
if
(
is_array
(
$value
)
)
{
$escape
&&
array_walk
(
$value
,
'pQuerySql::escape'
);
$condition
.=
"IN ('"
.
implode
(
"', '"
,
$value
)
.
"')"
;
}
else
{
$escape
&&
$value
=
self
::
escape
(
$value
);
$condition
.=
"= '
$value
'"
;
}
$conditions
[]
=
$condition
;
}
return
implode
(
" AND "
,
$conditions
);
}
}
/**
...
...
test/test_sql.php
View file @
88a7bc77
...
...
@@ -77,10 +77,54 @@ class pQuerySqlTest extends UnitTestCase {
$this
->
assertIdentical
(
$sql
->
fetch
(),
false
);
}
function
test_
result_count
()
{
__sql
::
set_login_data
(
'localhost'
,
'root'
,
''
,
'pquery_test'
);
function
test_
num_rows
()
{
self
::
set_login_data
(
);
$sql
=
_sql
(
"select bar from foo where id in (1, 2)"
);
$this
->
assertEqual
(
$sql
->
result_count
(),
2
);
$this
->
assertEqual
(
$sql
->
num_rows
(),
2
);
}
function
test_parse_constraints_empty
()
{
$this
->
assertIdentical
(
__sql
::
parse_constraints
(
null
,
false
),
"1"
);
}
function
test_parse_constraints_string
()
{
$constraints
=
"foo LIKE '%bar%'"
;
$this
->
assertEqual
(
__sql
::
parse_constraints
(
$constraints
,
false
),
$constraints
);
}
function
test_parse_constraints_simple
()
{
$this
->
assertEqual
(
__sql
::
parse_constraints
(
array
(
'id'
=>
1
,
'bar'
=>
'test1'
),
false
),
"`id` = '1' AND `bar` = 'test1'"
);
}
function
test_parse_constraints_value_list
()
{
$this
->
assertEqual
(
__sql
::
parse_constraints
(
array
(
'id'
=>
range
(
1
,
3
)),
false
),
"`id` IN ('1', '2', '3')"
);
}
function
test_insert_query
()
{
$sql
=
__sql
::
insert_row
(
'foo'
,
array
(
'bar'
=>
'test3'
),
false
);
$this
->
assertEqual
(
$sql
->
query
,
"INSERT INTO `foo`(`bar`) VALUES('test3');"
);
}
function
test_delete_query
()
{
$sql
=
__sql
::
delete
(
'foo'
,
array
(
'bar'
=>
'test3'
),
false
);
$this
->
assertEqual
(
$sql
->
query
,
"DELETE FROM `foo` WHERE `bar` = 'test3';"
);
}
function
test_insert_delete
()
{
self
::
set_login_data
();
$insert
=
__sql
::
insert_row
(
'foo'
,
array
(
'bar'
=>
'test3'
))
->
execute
();
// Do not continue unless the value has been inserted
if
(
!
$this
->
assertIdentical
(
$insert
->
result
,
true
)
)
return
false
;
// Delete the record that was just inserted
$delete
=
__sql
::
delete
(
'foo'
,
array
(
'bar'
=>
'test3'
))
->
execute
();
$this
->
assertIdentical
(
$delete
->
result
,
true
);
}
static
function
set_login_data
()
{
...
...
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