<project name="EJBQL" default="compile" >

  <property environment="env"/>

  <property file="build.properties" />

  <target name="createtables">
    <sql driver="${jdbc.driver}" url="${jdbc.url}"
      userid="${jdbc.userid}" password="${jdbc.password}"
      src="${build.sql}" print="yes">
        <classpath>
          <pathelement location="${jdbc.jar}"/>
        </classpath>
    </sql>
  </target>
