Catatan

Tunjukkan catatan dari November, 2022

SQL Update with INNER JOIN

  Example query: update [signalling].[dbo].[Lokasi] SET eventLocation = s.qEventLocation  FROM [signalling].[dbo].[Lokasi] AS l  INNER JOIN [syncdb].[dbo].[stations] AS s ON s.stationname = l.station;

Encryption and Decryption in C#

References:  Encryption and Decryption in C#  - https://sankhadip.medium.com/encryption-and-decryption-in-c-f2de3d802e1d#:~:text=The%20Advanced%20Encryption%20Standard%2C%20or,to%20encrypt%20and%20decrypt%20messages. Encryption And Decryption Using A Symmetric Key In C# - https://www.c-sharpcorner.com/article/encryption-and-decryption-using-a-symmetric-key-in-c-sharp/ Public Key Encryption - https://www.tutorialspoint.com/cryptography/public_key_encryption.htm