Subject Re: [Firebird-Java] Database Introspection with Jaybird
Author Fidel Viegas
On Feb 7, 2008 2:18 PM, Roman Rokytskyy <rrokytskyy@...> wrote:

> Check the
>
> CREATE TABLE mytable( id AS INTEGER);
>
> and then using the "mytable" string get the columns for the table. But
> this is quite legitimate test case.

I didn't notice you had the AS keyword there. Which version of
Firebird uses this syntax? I am using Firebird 2.0.3, and that gives
me a syntax error.

But if I do

CREATE TABLE mytable (id INTEGER);

That works.