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
d4df743a
Commit
d4df743a
authored
Nov 19, 2006
by
zYne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added new attributes (needed in the future)
parent
eedfb40e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
20 deletions
+50
-20
Doctrine.php
lib/Doctrine.php
+50
-20
No files found.
lib/Doctrine.php
View file @
d4df743a
...
@@ -42,45 +42,41 @@ final class Doctrine {
...
@@ -42,45 +42,41 @@ final class Doctrine {
*/
*/
const
ATTR_LISTENER
=
1
;
const
ATTR_LISTENER
=
1
;
/**
/**
*
fetchmode
attribute
*
portability
attribute
*/
*/
const
ATTR_
FETCHMODE
=
2
;
const
ATTR_
PORTABILITY
=
9
;
/**
/**
*
batch size
attribute
*
quote identifier
attribute
*/
*/
const
ATTR_
BATCH_SIZE
=
8
;
const
ATTR_
QUOTE_IDENTIFIER
=
3
;
/**
/**
*
locking
attribute
*
field case
attribute
*/
*/
const
ATTR_
LOCKMODE
=
11
;
const
ATTR_
FIELD_CASE
=
4
;
/**
/**
*
validatate
attribute
*
index name format
attribute
*/
*/
const
ATTR_
VLD
=
12
;
const
ATTR_
IDXNAME_FORMAT
=
5
;
/**
/**
*
name prefix
attribute
*
sequence name format
attribute
*/
*/
const
ATTR_
NAME_PREFIX
=
13
;
const
ATTR_
SEQNAME_FORMAT
=
6
;
/**
/**
*
create tables
attribute
*
sequence column name
attribute
*/
*/
const
ATTR_
CREATE_TABLES
=
14
;
const
ATTR_
SEQCOL_NAME
=
7
;
/**
/**
*
collection key
attribute
*
validation
attribute
*/
*/
const
ATTR_
COLL_KEY
=
15
;
const
ATTR_
VLD
=
12
;
/**
/**
* collection
limit
attribute
* collection
key
attribute
*/
*/
const
ATTR_COLL_
LIMIT
=
16
;
const
ATTR_COLL_
KEY
=
15
;
/**
/**
* query limit
* query limit
*/
*/
const
ATTR_QUERY_LIMIT
=
17
;
const
ATTR_QUERY_LIMIT
=
17
;
/**
* accessor invoking attribute
*/
const
ATTR_ACCESSORS
=
18
;
/**
/**
* automatic length validations attribute
* automatic length validations attribute
*/
*/
...
@@ -89,6 +85,40 @@ final class Doctrine {
...
@@ -89,6 +85,40 @@ final class Doctrine {
* automatic type validations attribute
* automatic type validations attribute
*/
*/
const
ATTR_AUTO_TYPE_VLD
=
20
;
const
ATTR_AUTO_TYPE_VLD
=
20
;
/** TODO: REMOVE THE FOLLOWING CONSTANTS AND UPDATE THE DOCS ! */
/**
* fetchmode attribute
*/
const
ATTR_FETCHMODE
=
2
;
/**
* batch size attribute
*/
const
ATTR_BATCH_SIZE
=
8
;
/**
* locking attribute
*/
const
ATTR_LOCKMODE
=
11
;
/**
* name prefix attribute
*/
const
ATTR_NAME_PREFIX
=
13
;
/**
* create tables attribute
*/
const
ATTR_CREATE_TABLES
=
14
;
/**
* collection limit attribute
*/
const
ATTR_COLL_LIMIT
=
16
;
/**
* accessor invoking attribute
*/
const
ATTR_ACCESSORS
=
18
;
/**
/**
* LIMIT CONSTANTS
* LIMIT CONSTANTS
...
...
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