Commit d4df743a authored by zYne's avatar zYne

added new attributes (needed in the future)

parent eedfb40e
...@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment