Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
bdb-crash.test
Package: mysql-3.23.35.tar.gz [view]
Upload User: tsgydb
Upload Date: 2007-04-14
Package Size: 10674k
Code Size: 1k
Category:
MySQL
Development Platform:
Visual C++
- # test for bug reported by Mark Steele
- drop table if exists tblChange;
- CREATE TABLE tblCharge (
- ChargeID int(10) unsigned DEFAULT '0' NOT NULL auto_increment,
- ServiceID int(10) unsigned DEFAULT '0' NOT NULL,
- ChargeDate date DEFAULT '0000-00-00' NOT NULL,
- ChargeAmount decimal(20,2) DEFAULT '0.00' NOT NULL,
- FedTaxes decimal(20,2) DEFAULT '0.00' NOT NULL,
- ProvTaxes decimal(20,2) DEFAULT '0.00' NOT NULL,
- ChargeStatus enum('New','Auth','Unauth','Sale','Denied','Refund')
- DEFAULT 'New' NOT NULL,
- ChargeAuthorizationMessage text,
- ChargeComment text,
- ChargeTimeStamp varchar(20),
- PRIMARY KEY (ChargeID),
- KEY ServiceID (ServiceID),
- KEY ChargeDate (ChargeDate)
- ) type=BDB;
- BEGIN;
- INSERT INTO tblCharge
- VALUES(NULL,1,'2001-03-01',1,1,1,'New',NULL,NULL,'now');
- COMMIT;
- BEGIN;
- UPDATE tblCharge SET ChargeAuthorizationMessage = 'blablabla' WHERE
- ChargeID = 1;
- COMMIT;
- INSERT INTO tblCharge
- VALUES(NULL,1,'2001-03-01',1,1,1,'New',NULL,NULL,'now');
- select * from tblCharge;
- drop table tblCharge;