SDO_DAS_Relational::__construct
(^)
SDO_DAS_Relational::__construct —
Creates an instance of a Relational Data Access Service
설명
SDO_DAS_Relational::__construct
(
array
$database_metadata
[,
string
$application_root_type
[,
array
$SDO_containment_references_metadata
]] )
Warning이 함수는
실험적입니다. 이 함수의 작동, 함수의 이름,
그리고 관련된 모든 문서는 이후의 PHP 릴리즈에서 예고 없이
변경할 수 있습니다. 이 함수의 사용에 관한 것은 사용자
책임입니다.
Constructs an instance of a Relational Data Access Service
from the passed metadata.
인수
-
database_metadata
-
An array containing one or more table definitions,
each of which is an associative array containing the keys
name,
columns,
PK, and optionally,
FK.
For a full discussion of the metadata, see the
metadata
section in the general information about the Relational DAS.
-
application_root_type
-
The root of each data graph is an object of a special root type and
the application data objects come below that.
Of the various application types in the SDO model,
one has to be the application type immediately
below the root of the data graph.
If there is only one table in the database metadata,
so the application root type can be inferred, this argument can be omitted.
-
SDO_containment_references_metadata
-
An array containing one or more definitions of a containment relation,
each of which is an associative array containing the keys
parent
and
child.
The containment relations describe how the types in the model
are connected to form a tree.
The type specified as the application root type must be present
as one of the parent types in the containment references.
If the application only needs to work with one table at a time,
and there are no containment relations in the model,
this argument can be omitted.
For a full discussion of the metadata, see the
metadata
section in the general information about the Relational DAS.
반환값
Returns an SDO_DAS_Relational object on success.
오류/예외
SDO_DAS_Relational::__construct()
throws a SDO_DAS_Relational_Exception if
any problems are found in the metadata.
예제
For a full discussion of the metadata, see the
metadata
section in the general information about the Relational DAS.