Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
c5046fb2
Commit
c5046fb2
authored
9 years ago
by
Joas Schilling
Browse files
Options
Downloads
Patches
Plain Diff
Add parameters to public interface
parent
ce753231
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/public/db/querybuilder/iquerybuilder.php
+39
-0
39 additions, 0 deletions
lib/public/db/querybuilder/iquerybuilder.php
with
39 additions
and
0 deletions
lib/public/db/querybuilder/iquerybuilder.php
+
39
−
0
View file @
c5046fb2
...
@@ -21,11 +21,50 @@
...
@@ -21,11 +21,50 @@
namespace
OCP\DB\QueryBuilder
;
namespace
OCP\DB\QueryBuilder
;
use
Doctrine\DBAL\Connection
;
/**
/**
* This class provides a wrapper around Doctrine's QueryBuilder
* This class provides a wrapper around Doctrine's QueryBuilder
* @since 8.2.0
* @since 8.2.0
*/
*/
interface
IQueryBuilder
{
interface
IQueryBuilder
{
/**
* @since 9.0.0
*/
const
PARAM_NULL
=
\PDO
::
PARAM_NULL
;
/**
* @since 9.0.0
*/
const
PARAM_BOOL
=
\PDO
::
PARAM_BOOL
;
/**
* @since 9.0.0
*/
const
PARAM_INT
=
\PDO
::
PARAM_INT
;
/**
* @since 9.0.0
*/
const
PARAM_STR
=
\PDO
::
PARAM_STR
;
/**
* @since 9.0.0
*/
const
PARAM_LOB
=
\PDO
::
PARAM_LOB
;
/**
* @since 9.0.0
*/
const
PARAM_DATE
=
'datetime'
;
/**
* @since 9.0.0
*/
const
PARAM_INT_ARRAY
=
Connection
::
PARAM_INT_ARRAY
;
/**
* @since 9.0.0
*/
const
PARAM_STR_ARRAY
=
Connection
::
PARAM_STR_ARRAY
;
/**
/**
* Enable/disable automatic prefixing of table names with the oc_ prefix
* Enable/disable automatic prefixing of table names with the oc_ prefix
*
*
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment