On Fri, Oct 17, 2008 at 4:58 PM, Steve Gums <[EMAIL PROTECTED]> wrote:
> I can create the database fine.  I can read the system tables without error.  
> I don't receive any exception or error just a -1 and the table isn't there.

using (FbConnection conn = new
FbConnection(@"database=localhost/3050:rrr.fdb;user=sysdba;password=masterkey"))
            {
                conn.Open();
                using (FbCommand cmd = conn.CreateCommand())
                {
                    cmd.CommandText = "create table foo (bar)";
                    cmd.ExecuteNonQuery();
                }
            }

Dynamic SQL Error
SQL error code = -104
Token unknown - line 1, column 22
)
-- 
Jiri {x2} Cincura (CTO x2develop.com)
http://blog.vyvojar.cz/jirka/ | http://www.ID3renamer.com

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Firebird-net-provider mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider

Reply via email to