Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ObjectContext.CreateDatabaseScript() creating wrong output for table fields of type DOUBLE [DNET480] #468

Closed
firebird-automations opened this issue Jan 3, 2013 · 4 comments

Comments

@firebird-automations
Copy link

Submitted by: Miloslav Holúbek (mholubek)

When you have Firebird table with field of double type and want to use ObjectContext's method CreateDatabase(), (using CreateDatabaseScript() internally), its generating bad script output internally and throwing exception.

Example of current output (its throwing "Token unknown - line 10, column 27 NOT"):
RECREATE TABLE "ITEMS" (
"ID" BIGINT NOT NULL,
...
"AMOUNT" DOUBLE NOT NULL,
...
);

Should be:
RECREATE TABLE "ITEMS" (
"ID" BIGINT NOT NULL,
...
"AMOUNT" DOUBLE PRECISION NOT NULL,
...
);

Commits: 30d4902

@firebird-automations
Copy link
Author

Modified by: Miloslav Holúbek (mholubek)

Component: Entity Framework support [ 10110 ]

Component: http://ADO.NET Provider [ 10041 ] =>

@firebird-automations
Copy link
Author

Modified by: @cincuranet

priority: Critical [ 2 ] => Major [ 3 ]

@firebird-automations
Copy link
Author

Modified by: @cincuranet

status: Open [ 1 ] => Resolved [ 5 ]

resolution: Fixed [ 1 ]

@firebird-automations
Copy link
Author

Modified by: @cincuranet

Fix Version: vNext [ 10491 ]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants