You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Using Apache Derby Database

Prerequisites

You should have Apache Derby 1.5+ installed.

Setting Up the Database for VCL

  1. create a database in mysql named for use with VCL
    ij
    connect 'jdbc:derby:vcl1;create=true;user='vcluser';password=vcluserpassword;';
    
  2. get vcl.sql file and the derby-parser.pl
    svn export https://svn.apache.org/repos/asf/incubator/vcl/trunk/mysql/vcl.sql
    
    chmod a+x derby-parser.pl
    ./derby-parser.pl
    
  3. import vcl.sql file into database
    ij vcl-derby.sql
    
  • No labels