Examining JDBC Drivers

By Mukul Sood

Dr. Dobb's Journal January 1998

begin tran
  update acct_info10k
  set balance = 2000.00
  where acct_id = 500
  delete from acct_info10k
  where acct_id = 500
  insert into acct_info10k
  values (500,"CustomerNameTran",10,2000.00,"CustomerPassword","1997-08-29")
commit tran

Example 2: SQL code used for static-transaction and stored-procedure tests.

Back to Article


Copyright © 1998, Dr. Dobb's Journal