Hi All, 
As documentation says, jooq hasn't got any flag to control routines, but 
always I'm unable to generate stored procedures for Firebird DB. I'm 
working with jooq code generator version 3.5.0 via Maven.

Please shed me some light, if I'm doing this in wrong way. 

<plugin> 
  <groupId>org.jooq</groupId>
  <artifactId>jooq-codegen-maven</artifactId>
  <version>3.5.0</version>

 <executions>
 <execution>
 <id>exec1</id>
       <goals>
         <goal>generate</goal>
       </goals>

 <configuration> 

    <jdbc>
      <driver>org.firebirdsql.jdbc.FBDriver</driver>
      <url>jdbc:firebirdsql://localhost/C:/gdb/TEST.FDB</url>
      <user>jooq</user>
      <password>1</password>
    </jdbc> 

     <generator>
       <name>org.jooq.util.DefaultGenerator</name>
       <database>
         <name>org.jooq.util.firebird.FirebirdDatabase</name>
         <includes>.*</includes>
         <excludes></excludes>
       </database>
 <generate>
 <daos>true</daos>
 <relations>true</relations>
 <deprecated>false</deprecated>
 <instanceFields>True</instanceFields>
 </generate>       
       <target>
         <packageName>com.jooq.entity</packageName>
         <directory>src\main\java\</directory>
       </target>
     </generator>
 </configuration>       
 </execution>
 </executions>
 <dependencies> 
 <dependency>
 <groupId>org.firebirdsql.jdbc</groupId>
 <artifactId>jaybird</artifactId>
 <version>${firebird.version}</version> 
 </dependency>         
</dependencies> 
</plugin>


Thanks,
Buddhika E.

-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to