Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 23rd, 2012  |  syntax: Java  |  size: 0.33 KB  |  hits: 19  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. import java.io.IOException;
  2.  
  3. public class Start {
  4.  
  5.         public static void main(String[] args) {
  6.  
  7.  
  8.                 try {
  9.                         DBWrapper dbw = new DBWrapper("C:\\test123.txt");
  10.                         dbw.speichern(22, "test123");
  11.                         dbw.laden(22);
  12.                 } catch (IOException e) {
  13.                         // TODO Auto-generated catch block
  14.                         e.printStackTrace();
  15.                 }
  16.                
  17.  
  18.                
  19.  
  20.         }
  21.  
  22. }