Пример #1
0
 public static int Modify(AccountInfo account)
 {
     return(SQLiteControl.SQLiteUpDate("UsersTable", "ID", new int[] { account.ID },
                                       new string[] { "Person", "Account", "Password", "Key" },
                                       new string[]
     {
         account.Person, account.Account, Encryption.EncryptBase64(account.Password),
         Encryption.EncryptBase64(account.Key)
     }));
 }