Skip to content

Instantly share code, notes, and snippets.

@isicju
Last active March 8, 2024 23:40
Show Gist options
  • Save isicju/342e453550d678446da3cfe9c5d05c04 to your computer and use it in GitHub Desktop.
Save isicju/342e453550d678446da3cfe9c5d05c04 to your computer and use it in GitHub Desktop.
Вытаскиваем данные из базы данных
//Задача супер проста: читаем с базы данные о сотруднике те firstName,lastName,employeeId, birthDate
//Решения могут включать
//jdbc
//jdbcTemplate или подобный вроде apacheTemplate
//нельзя использовать решения типа hibernate/Spring Data
//Сам запрос пускай будет "SELECT * FROM EMPLOYEES"
public Employee getEmployeeById(){
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment