Changes between Version 1 and Version 2 of UseCase03PrototypeImplementation
- Timestamp:
- 02/04/26 21:44:16 (4 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UseCase03PrototypeImplementation
v1 v2 6 6 == Scenario 7 7 1. Guest goes to the login page. 8 [[Image(main.png)]] 8 9 2. Guest submits credentials. 10 [[Image(login.png)]] 9 11 {{{ 10 SELECT 11 user_id, 12 username, 13 email, 14 name, 15 surname 16 FROM users 17 WHERE username = 'client.mila' 18 AND password_hash = 'hash_test_123'; 12 SELECT * FROM users WHERE username = ? 13 }}} 14 {{{ 15 SELECT 1 FROM owners WHERE user_id = ? LIMIT 1 19 16 }}} 20 17
