RefyUserSettingsRepository
The RefyUserSettingsRepository interface is useful to manage the queries for the user settings operations
Author
N7ghtm4r3 - Tecknobit
Since
1.1.0
See also
JpaRepository
Functions
Link copied to clipboard
@Modifying(clearAutomatically = true)
@Query(value = ""UPDATE " + SETTINGS_KEY + " SET " +
CLOSE_APPLICATION_ON_LINK_OPEN_KEY + "=:" + CLOSE_APPLICATION_ON_LINK_OPEN_KEY +
_WHERE_ + IDENTIFIER_KEY + "=:" + IDENTIFIER_KEY", nativeQuery = true)
Query used to change the
close application on open link setting preferenceLink copied to clipboard
@Modifying(clearAutomatically = true)
@Query(value = "INSERT INTO " + SETTINGS_KEY +
"(" + IDENTIFIER_KEY + ")" + _VALUES_
+ "(:" + IDENTIFIER_KEY + ")", nativeQuery = true)
Query used to create the record for the settings of the user
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard