bdb-crash.result
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. drop table if exists t1;
  2. CREATE TABLE t1 (
  3. ChargeID int(10) unsigned NOT NULL auto_increment,
  4. ServiceID int(10) unsigned DEFAULT '0' NOT NULL,
  5. ChargeDate date DEFAULT '0000-00-00' NOT NULL,
  6. ChargeAmount decimal(20,2) DEFAULT '0.00' NOT NULL,
  7. FedTaxes decimal(20,2) DEFAULT '0.00' NOT NULL,
  8. ProvTaxes decimal(20,2) DEFAULT '0.00' NOT NULL,
  9. ChargeStatus enum('New','Auth','Unauth','Sale','Denied','Refund')
  10. DEFAULT 'New' NOT NULL,
  11. ChargeAuthorizationMessage text,
  12. ChargeComment text,
  13. ChargeTimeStamp varchar(20),
  14. PRIMARY KEY (ChargeID),
  15. KEY ServiceID (ServiceID),
  16. KEY ChargeDate (ChargeDate)
  17. ) engine=BDB;
  18. BEGIN;
  19. INSERT INTO t1
  20. VALUES(NULL,1,'2001-03-01',1,1,1,'New',NULL,NULL,'now');
  21. COMMIT;
  22. BEGIN;
  23. UPDATE t1 SET ChargeAuthorizationMessage = 'blablabla' WHERE
  24. ChargeID = 1;
  25. COMMIT;
  26. INSERT INTO t1
  27. VALUES(NULL,1,'2001-03-01',1,1,1,'New',NULL,NULL,'now');
  28. select * from t1;
  29. ChargeID ServiceID ChargeDate ChargeAmount FedTaxes ProvTaxes ChargeStatus ChargeAuthorizationMessage ChargeComment ChargeTimeStamp
  30. 1 1 2001-03-01 1.00 1.00 1.00 New blablabla NULL now
  31. 2 1 2001-03-01 1.00 1.00 1.00 New NULL NULL now
  32. drop table t1;
  33. create table t1 (a int) engine=bdb;
  34. set autocommit=0;
  35. insert into t1 values(1);
  36. analyze table t1;
  37. Table Op Msg_type Msg_text
  38. test.t1 analyze status Operation need committed state
  39. drop table t1;