摘要:
truecrypt是款不错的加密软件,不过很多人加密后使用后不想保留加密了,想去掉。但是不知道正确的方法其实官网说的很清了http://www.truecrypt.org/docs/?s=system-encryptionHow to Remove EncryptionPlease note that TrueCrypt can in-place decrypt only system partitions and system drives (select System > Permanently Decrypt System Partition/Drive). If you need 阅读全文
摘要:
if...条件...thenend if;------------------if...条件...then语句1else语句2end if;-----------------if...条件1...then语句1elsif...条件2...then语句2elsif...条件3...then语句3...........end if;--练习条件判断语句 --更新账户余额--编写一个过程,输入一个账户名,如果该账户的余额低于100,就增加10%create or replace procedure sp_money_test(sp_name in varchar2) as--%TYPE--引用某个变 阅读全文
摘要:
第一个块练习 根据输入的用户名屏显该用户的密码 --注意,因为定义v_loginname是字符型,所以在弹出的输入框中要在数字中带上''单引号,否则会认为是number型而报错。 阅读全文