Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
projet-cdaw
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
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
Quentin Vrel
projet-cdaw
Commits
ac5279e4
Commit
ac5279e4
authored
Dec 03, 2020
by
quentin.vrel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
typo correction "Game"->"Round"
parent
c46562a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
Round.sql.php
BackEnd/src/sql/Round.sql.php
+5
-5
No files found.
BackEnd/src/sql/Round.sql.php
View file @
ac5279e4
<?php
<?php
Game
::
addSqlQuery
(
Round
::
addSqlQuery
(
'ROUND_LIST'
,
'ROUND_LIST'
,
'SELECT * FROM MJ_ROUND'
'SELECT * FROM MJ_ROUND'
);
);
Game
::
addSqlQuery
(
Round
::
addSqlQuery
(
'ROUND_GET_WITH_ID'
,
'ROUND_GET_WITH_ID'
,
'SELECT * FROM MJ_ROUND WHERE ID_ROUND=:id'
'SELECT * FROM MJ_ROUND WHERE ID_ROUND=:id'
);
);
Game
::
addSqlQuery
(
Round
::
addSqlQuery
(
'ROUND_GET_USERS'
,
'ROUND_GET_USERS'
,
'SELECT usr.ID_USER,
'SELECT usr.ID_USER,
usr.ID_ROLE,
usr.ID_ROLE,
...
@@ -27,13 +27,13 @@ Game::addSqlQuery(
...
@@ -27,13 +27,13 @@ Game::addSqlQuery(
WHERE r.ID_ROUND=:id'
WHERE r.ID_ROUND=:id'
);
);
Game
::
addSqlQuery
(
Round
::
addSqlQuery
(
'ROUND_CREATE'
,
'ROUND_CREATE'
,
'INSERT INTO MJ_ROUND (ID_ROUND ,ID_GAME ,PREVAILING_WIND ,SEED ,BEGINING ,ENDING ,ACTIONS)
'INSERT INTO MJ_ROUND (ID_ROUND ,ID_GAME ,PREVAILING_WIND ,SEED ,BEGINING ,ENDING ,ACTIONS)
VALUES (NULL, :id_game, :prevailing_wind, :seed, :begin_date, NULL, NULL)'
VALUES (NULL, :id_game, :prevailing_wind, :seed, :begin_date, NULL, NULL)'
);
);
Game
::
addSqlQuery
(
Round
::
addSqlQuery
(
'ACTION_UPDATE'
,
'ACTION_UPDATE'
,
'UPDATE MJ_ROUND
'UPDATE MJ_ROUND
SET ACTIONS = :actions WHERE ID_ROUND = :id'
SET ACTIONS = :actions WHERE ID_ROUND = :id'
...
...
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