Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Case 2 #8

Open
wants to merge 25 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
f7b8acf
Typescript REST API + MSSQL DB Driver + SELECT Cantons Testing
LuisDi98 Mar 9, 2022
01aed6e
sql Script Full with tables and test data. Still need to implement Sp…
LuisDi98 Mar 10, 2022
f2b9540
1er endpoint
StefWalker Mar 11, 2022
e834122
Update database.sql
StefWalker Mar 11, 2022
5119d40
Fixes for API
LuisDi98 Mar 11, 2022
9e8fcb3
Update SqlPooling.ts
LuisDi98 Mar 11, 2022
01c6d16
1st and 2nd Endpoints
StefWalker Mar 21, 2022
33ddfcb
Endpoint 4 implemented + tested + missing SP for the Endpoint 4
LuisDi98 Mar 22, 2022
8b4affa
Endpoint 5 + tested + missing SP
LuisDi98 Mar 22, 2022
7621cb5
Endpoints 4 & 5 in SPs
LuisDi98 Mar 22, 2022
2f644cd
endpoint 3, base
StefWalker Mar 22, 2022
d344bf0
Merge branch 'Case_2' of https://github.com/LordGrapha/TEC_CR_Databas…
StefWalker Mar 22, 2022
3f2d4a8
Update database.sql
StefWalker Mar 22, 2022
e3b55da
Update database.sql
StefWalker Mar 22, 2022
ad0917a
API implemented + SQL SPs implemented + Endpoint_1 is not working, ch…
LuisDi98 Mar 22, 2022
2339324
Merge branch 'Case_2' of https://github.com/LordGrapha/TEC_CR_Databas…
LuisDi98 Mar 22, 2022
69c15f0
Update database.sql
LuisDi98 Mar 22, 2022
7861b61
Update database.sql
StefWalker Mar 22, 2022
9105400
Update database.sql
StefWalker Mar 22, 2022
86fd4bd
Endpoint 3
StefWalker Mar 22, 2022
341bb55
Endpoints
StefWalker Mar 23, 2022
b6e40d1
Final Commit
LuisDi98 Mar 23, 2022
692e1f6
Final sql commit with all endpoints
LuisDi98 Mar 23, 2022
cf5a845
Create Case_2.postman_collection.json
LuisDi98 Mar 23, 2022
927a546
Last tweaks, everything works good
LuisDi98 Mar 23, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ Case_1/src/dotnetServer/obj
Case_1/src/dotnetServer/bin
node_modules
Case_1/src/javaServer/sql/target
Case_2/node_modules
Case_2/*.js
2 changes: 1 addition & 1 deletion Case_1/src/typescriptServer/providers/SqlProvider.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import mssql, { Promise } from 'mssql';
import * as mssql from 'mssql';
import Timer from '../util/Timer';

export default class SqlProvider{
Expand Down
Loading