| 20 |
* $Id$ |
* $Id$ |
| 21 |
* |
* |
| 22 |
* $Log$ |
* $Log$ |
| 23 |
|
* Revision 1.6 2003/03/05 16:10:08 joko |
| 24 |
|
* updated docu (phpDocumentor testing....) |
| 25 |
|
* |
| 26 |
* Revision 1.5 2003/03/05 15:40:39 joko |
* Revision 1.5 2003/03/05 15:40:39 joko |
| 27 |
* updated docu (phpDocumentor testing....) |
* updated docu (phpDocumentor testing....) |
| 28 |
* |
* |
| 52 |
* - Build-AutoLocator: use global constants making up our metadata |
* - Build-AutoLocator: use global constants making up our metadata |
| 53 |
* |
* |
| 54 |
* <b>It can/should contain:</b> |
* <b>It can/should contain:</b> |
| 55 |
|
* |
| 56 |
|
* <pre> |
| 57 |
* (flexible, just some parameters are required for each operation mode) |
* (flexible, just some parameters are required for each operation mode) |
| 58 |
* - an oldschool "dsn"-string (e.g. for rdbms-connection via PEAR) |
* - an oldschool "dsn"-string (e.g. for rdbms-connection via PEAR) |
| 59 |
* + name of a Proxy module to use to *wrap/hide* the connection/transport-layer |
* + name of a Proxy module to use to *wrap/hide* the connection/transport-layer |
| 69 |
* by the DataSource::Generic at runtime |
* by the DataSource::Generic at runtime |
| 70 |
* - names of global constants where to find these informations |
* - names of global constants where to find these informations |
| 71 |
* - datasource-type ('rpc|csv-file|...') <-> datasource-family ('orm|rdbms|odbms') |
* - datasource-type ('rpc|csv-file|...') <-> datasource-family ('orm|rdbms|odbms') |
| 72 |
|
* </pre> |
| 73 |
* |
* |
| 74 |
* |
* |
| 75 |
* <b>It can do</b> |
* <b>It can do</b> |
| 209 |
* The constructor is used to pass in the |
* The constructor is used to pass in the |
| 210 |
* locator metadata hash. |
* locator metadata hash. |
| 211 |
* |
* |
| 212 |
* @param LocatorMetadataHash array - layout: array( type => '', metadata => '', dsn => '' ) |
* @param object(DataSource::Locator)|hash optional: a &$locator instance |
|
* @param Query array - layout: array( type => '', metadata => '', dsn => '' ) |
|
| 213 |
*/ |
*/ |
| 214 |
function DataSource_Locator() { |
function DataSource_Locator() { |
| 215 |
$args_multi = func_get_args(); |
$args_multi = func_get_args(); |
| 285 |
|
|
| 286 |
/** |
/** |
| 287 |
* Set the locator metadata hash we will feed *partly* |
* Set the locator metadata hash we will feed *partly* |
| 288 |
* to an encapsulated Data::Driver::Proxy instance. |
* to an encapsulated Data::Driver::Proxy instance |
| 289 |
* |
* |
| 290 |
* @param LocatorMetadataHash array - |
* @param LocatorMetadataHash array - |
| 291 |
* |
* |