This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # http://code.activestate.com/recipes/576534-dump-oracle-db-schema-to-text/ | |
| #!/usr/bin/env python | |
| # -*- coding: utf8 -*- | |
| __version__ = '$Id: schema_ora.py 928 2012-01-12 19:09:34Z tt $' | |
| # export Oracle schema to text | |
| # usable to compare databases that should be the same | |
| # | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /* | |
| * Example of `builder' design pattern. | |
| * Copyright (C) 2011 Radek Pazdera | |
| * | |
| * This program is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License as published by | |
| * the Free Software Foundation, either version 3 of the License, or | |
| * (at your option) any later version. | |
| * | |
| * This program is distributed in the hope that it will be useful, | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /* | |
| * Example of a singleton design pattern. | |
| * Copyright (C) 2011 Radek Pazdera | |
| * This program is free software: you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License as published by | |
| * the Free Software Foundation, either version 3 of the License, or | |
| * (at your option) any later version. | |
| * This program is distributed in the hope that it will be useful, | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | package de.kopis.camel.model; | |
| import org.apache.camel.dataformat.bindy.annotation.CsvRecord; | |
| import org.apache.camel.dataformat.bindy.annotation.DataField; | |
| @CsvRecord(separator = ",") | |
| public class CsvBean { | |
| @DataField(pos = 1) | |
| private String first; | |
| @DataField(pos = 2) | 
NewerOlder