Skip to content
Snippets Groups Projects
Commit c5046fb2 authored by Joas Schilling's avatar Joas Schilling
Browse files

Add parameters to public interface

parent ce753231
No related branches found
No related tags found
No related merge requests found
...@@ -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
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment