jj: Init Monorepo! :)

This commit is contained in:
Jonathan Jenne
2018-08-14 16:54:23 +02:00
parent 1a06d7ff67
commit f5f93b981f
47 changed files with 3061 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
Imports DD_FirebirdDLL
Public Class ClassCurrentUser
Public Username As String
Public Language As String
Private DB As ClassFirebird
Public Sub New(DB As ClassFirebird)
Username = Environment.UserName
DB = DB
Dim sql As String = $"SELECT FNGET_USER_ACCESS('edm','{Username}') FROM rdb$database"
Dim result = DB.ReturnScalar(sql)
End Sub
End Class