sql - Error creating database table using FirebirdSQL -


I am trying to add tables using a FlameRobin in a FirebirdSQL database, but I am getting the following error:

  Error: *** IBPP :: SQLException *** References: Statement :: Prepare (Make Potable Drink ...) Message: isc_dsql_prepare Failed SQL Message: -104 Formatted Message Can not do 13: 896 - Message file C: \ Windows \ firebird.msg not found Engine code: 335544569 Engine message: Dynamic SQL error SQL error code = -104 token unknown - Punk 3, column 5   

I have tried to googling the problem, but are unable to find a solution Does anyone know what is the issue here?

As it stands it looks like in the question is the real statement In that case, you are getting the error because it is just an invalid syntax:

  to drink a table (...)   

If I execute it in Flamerobin I get almost the same error (except for 2 line, column 5 (first . ), because the parser is expecting the column name. ... You need to specify the actual column (and alternate barriers) of the table. For example:

  Make the table drink (ID Integer Primary key, name VARCHAR ( 100) No Taps)    

Comments

Popular posts from this blog

Verilog Error: output or inout port "Q" must be connected to a structural net expression -

jasper reports - How to center align barcode using jasperreports and barcode4j -

c# - ASP.NET MVC - Attaching an entity of type 'MODELNAME' failed because another entity of the same type already has the same primary key value -