Last active
December 21, 2015 03:19
-
-
Save cmarat/6241198 to your computer and use it in GitHub Desktop.
Authenticate Virtuoso SPARQL endpoint users using the SQL user name given in the endpoint Realm.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create procedure | |
DB.DBA.HP_AUTH_SQL_USER_AUTO (in realm varchar) | |
{ | |
declare _user varchar; | |
_user := realm; | |
connection_set ('SPARQLUserId', _user); | |
return 1; | |
} | |
; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment