Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MaarchCourrier
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Redmine
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Harbor Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maarch
MaarchCourrier
Commits
783b2e4f
Commit
783b2e4f
authored
12 years ago
by
Cyril Vazquez
Browse files
Options
Downloads
Patches
Plain Diff
No commit message
No commit message
parent
1f64f7cb
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/trunk/core/tests/class/DataAccessService_Database.php
+23
-14
23 additions, 14 deletions
core/trunk/core/tests/class/DataAccessService_Database.php
with
23 additions
and
14 deletions
core/trunk/core/tests/class/DataAccessService_Database.php
+
23
−
14
View file @
783b2e4f
...
@@ -19,6 +19,11 @@ class DataAccessService_Database
...
@@ -19,6 +19,11 @@ class DataAccessService_Database
return
$newTable
;
return
$newTable
;
}
}
function
addColumn
(
$tableName
,
$columnName
,
$columnType
)
{
return
$this
->
tables
[
$tableName
]
->
addColumn
(
$columnName
,
$columnType
);
}
function
addRelation
(
$parentTable
,
$childTable
,
$parentColumns
,
$childColumns
)
function
addRelation
(
$parentTable
,
$childTable
,
$parentColumns
,
$childColumns
)
{
{
$newRelation
=
new
DataAccessService_Database_Relation
(
$parentTable
,
$childTable
,
$parentColumns
,
$childColumns
);
$newRelation
=
new
DataAccessService_Database_Relation
(
$parentTable
,
$childTable
,
$parentColumns
,
$childColumns
);
...
@@ -29,13 +34,26 @@ class DataAccessService_Database
...
@@ -29,13 +34,26 @@ class DataAccessService_Database
function
getData
(
$dataObject
,
$where
=
false
)
function
getData
(
$dataObject
,
$where
=
false
)
{
{
$parentObject
=
$dataObject
->
getParentObject
();
$parentObject
=
$dataObject
->
getParentObject
();
$objectElement
=
$dataObject
->
getSchemaElement
();
$tableName
=
$objectElement
->
name
;
// Select Expression
// Select Expression
$selectExpression
=
$this
->
makeSelectExpression
();
$selectExpressionParts
=
array
();
foreach
(
$this
->
tables
[
$tableName
]
->
columns
as
$columnName
=>
$column
)
{
// DEFAULT, FIXED
if
(
$column
->
fixed
)
{
$fixedValue
=
$this
->
enclose
(
$column
->
fixed
,
$column
->
type
);
$selectExpressionPart
=
$fixedValue
;
}
elseif
(
$column
->
{
'default'
})
{
$defaultValue
=
$this
->
enclose
(
$column
->
{
'default'
},
$column
->
type
);
$selectExpressionPart
=
"COALESCE("
.
$tableName
.
"."
.
$column
->
name
.
", "
.
$defaultValue
.
") AS "
.
$column
->
name
;
}
else
{
$selectExpressionPart
=
$tableName
.
"."
.
$column
->
name
;
}
$selectExpressionParts
[]
=
$selectExpressionPart
;
}
$selectExpression
=
implode
(
', '
,
$selectExpressionParts
);
// Tables
$fromExpression
=
$this
->
makeFromExpression
();
// Where
// Where
$whereExpressionParts
=
array
(
'1=1'
);
$whereExpressionParts
=
array
(
'1=1'
);
if
(
$parentObject
&&
count
(
$this
->
relations
))
{
if
(
$parentObject
&&
count
(
$this
->
relations
))
{
...
@@ -47,7 +65,7 @@ class DataAccessService_Database
...
@@ -47,7 +65,7 @@ class DataAccessService_Database
$whereExpression
=
implode
(
' and '
,
$whereExpressionParts
);
$whereExpression
=
implode
(
' and '
,
$whereExpressionParts
);
$query
=
"SELECT "
.
$selectExpression
;
$query
=
"SELECT "
.
$selectExpression
;
$query
.
=
" FROM "
.
$
fromExpression
;
$query
.
=
" FROM "
.
$
tableName
;
$query
.
=
" WHERE "
.
$whereExpression
;
$query
.
=
" WHERE "
.
$whereExpression
;
//echo "<pre>DAS = " . print_r($this,true) . "</pre>";
//echo "<pre>DAS = " . print_r($this,true) . "</pre>";
...
@@ -83,15 +101,6 @@ class DataAccessService_Database
...
@@ -83,15 +101,6 @@ class DataAccessService_Database
return
implode
(
', '
,
$selectExpressionParts
);
return
implode
(
', '
,
$selectExpressionParts
);
}
}
private
function
makeFromExpression
()
{
$fromExpressionParts
=
array
();
foreach
(
$this
->
tables
as
$tableName
=>
$table
)
{
$fromExpressionParts
[]
=
$tableName
;
}
return
implode
(
', '
,
$fromExpressionParts
);
}
private
function
makeRelationExpression
(
$tableName
,
$parentObject
)
{
private
function
makeRelationExpression
(
$tableName
,
$parentObject
)
{
$relation
=
$this
->
relations
[
0
];
$relation
=
$this
->
relations
[
0
];
$relationExpressionParts
=
array
();
$relationExpressionParts
=
array
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment