Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
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
Tomáš Trávníček
doctrine-dbal
Commits
324188a6
Commit
324188a6
authored
May 24, 2007
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added cache constants
parent
4ceb4ac5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
27 deletions
+9
-27
Doctrine.php
lib/Doctrine.php
+9
-27
No files found.
lib/Doctrine.php
View file @
324188a6
...
...
@@ -255,40 +255,15 @@ final class Doctrine
*/
const
FETCH_ARRAY
=
3
;
/**
* ACCESSOR CONSTANTS
*/
/**
* constant for no accessors
*/
const
ACCESSOR_NONE
=
0
;
/**
* constant for get accessors
*/
const
ACCESSOR_GET
=
1
;
/**
* constant for set accessors
*/
const
ACCESSOR_SET
=
2
;
/**
* constant for both accessors get and set
*/
const
ACCESSOR_BOTH
=
3
;
/**
* PORTABILITY CONSTANTS
*/
/**
* Portability: turn off all portability features.
* @see Doctrine::ATTR_PORTABILITY
*/
const
PORTABILITY_NONE
=
0
;
const
PORTABILITY_NONE
=
0
;
/**
* Portability: convert names of tables and fields to case defined in the
* "field_case" option when using the query*(), fetch*() methods.
...
...
@@ -301,7 +276,6 @@ final class Doctrine
* @see Doctrine::ATTR_PORTABILITY
*/
const
PORTABILITY_RTRIM
=
2
;
/**
* Portability: force reporting the number of rows deleted.
* @see Doctrine::ATTR_PORTABILITY
...
...
@@ -379,6 +353,14 @@ final class Doctrine
* constant for composite identifier
*/
const
IDENTIFIER_COMPOSITE
=
4
;
/**
* CACHING CONSTANTS
*/
const
CACHE_NONE
=
0
;
const
CACHE_PARSER
=
1
;
const
CACHE_RESULTSET
=
2
;
/**
* constructor
*/
...
...
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