... in particular, I'd also be interested in the output from this query:

SELECT * FROM RDB$PROCEDURES


2015-01-06 8:36 GMT+01:00 Lukas Eder <[email protected]>:

> Hello Buddhika,
>
> Can you show us what the log output of your code generator is? Could you
> maybe also share the PSQL code of 1-2 procedures that you're expecting in
> generated output?
>
> Best,
> Lukas
>
> 2015-01-06 8:12 GMT+01:00 Buddhika Ekanayake <[email protected]
> >:
>
>> 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.
>>
>
>

-- 
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