New Post: ODP Managed driver: Column 'TableName' does not belong to table...
Hi, I just installed the managed ODP provider and it seems DatabaseSchemaReader has a problem using it. I get an error saying 'Column 'TableName' does not belong to table ComputedColumns.' exception......
View ArticleNew Post: ODP Managed driver: Column 'TableName' does not belong to table...
I haven't tried the ODP Managed Driver yet, but I routinely use System.Data.OracleClient, traditional ODP (via OCI) and Devart, so I'm surprised that it's giving a different result. ComputedColumns is...
View ArticleNew Post: ODP Managed driver: Column 'TableName' does not belong to table...
Says 11.2.0.1.0 and Oracle v$version returns this: Oracle Database 11g Release 11.2.0.1.0 - 64bit Production PL/SQL Release 11.2.0.1.0 - Production CORE 11.2.0.1.0 Production TNS for 64-bit Windows:...
View ArticleNew Post: ODP Managed driver: Column 'TableName' does not belong to table...
Got it. The managed provider works fine, oracle versions are fine, that was a false lead. I'll commit the fix later today.
View ArticleNew Post: ODP Managed driver: Column 'TableName' does not belong to table...
Fix is commit 27515.
View ArticleNew Post: ODP Managed driver: Column 'TableName' does not belong to table...
Marin, sorry for disappearing but I've had to switch my attention to something else and I am still not quite done with that. I'll report my findings as soon as I have a chance to look at it. Thanks!
View ArticleNew Post: SqlServerMigrationGenerator incorrect syntax for DROP INDEX...
SQL server reports incorrect syntax for DROP INDEX. Schema name in index identifier is' t suitable. Index name expected only. Must be 'DROP INDEX [IndexName] ON [dbo].[TableName];'.
View ArticleNew Post: SqlServerMigrationGenerator incorrect syntax for DROP INDEX...
Checkin 27987 contains a fix. Will be released as 1.2.10.0, probably in a few days. Thanks!
View ArticleNew Post: Adding Data Annotation to Class
Hi, i would like to add Annotation Attributes to the POCOS generated, is it possible? Thank you
View ArticleNew Post: Adding Data Annotation to Class
In CodeGen there is a DataAnnotationWriter, but it's internal and only creates a minimal set of System.ComponentModel.DataAnnotation attributes for validation. It's not extensible for now. It should be...
View ArticleNew Post: Adding Data Annotation to Class
Thank You Martin for the quick reply. I added a custom property and it worked like a charm. You have done a terrific job with this :) congrats! Cheers
View ArticleNew Post: Adding a Tag-Attribute
Hi, sometimes it would help if I would be able to add some extra information to a table or a column. So maybe an attribute like object Tag {get;set;} would help. Thanks a lot
View ArticleNew Post: Migration Script!
I am also trying to generate a migration script for a new table using sql server ce 4.0 The solution to the "go" problem above does not seem to work for my scenario as the script has a parsing error at...
View ArticleNew Post: Migration Script!
SQLServerCe cannot batch statements at all. Programmatically you can use both Utilities.ScriptTools.SplitScript and ScriptTools.SplitBySemicolon to break it down into a string array, each element of...
View ArticleNew Post: PostgreSQL problem
Before anything, I wanna say I'm really impressed with this project. You made a really nice tool for developers! congratulations!!. I tested this project with a MySQL database and everything worked...
View ArticleNew Post: PostgreSQL problem
Thanks for the congrats- I'm glad you find it useful! The error has these details: "column "tablename" does not exist" is recorded in procedure "errorMissingColumn" line number 2655, source...
View ArticleNew Post: PostgreSQL problem
Thanks for your answer, you are totally right. I downloaded the source code to check if I could fix the problem and the error was happening in the TableDescription(string tableName) function. I took...
View ArticleNew Post: PostgreSQL problem
It's trying to read the metadata collections from the driver, using DbConnection.GetSchema(DbMetaDataCollectionNames.MetaDataCollections). So the input string ("MetaDataCollections") is part of the...
View ArticleNew Post: PostgreSQL problem
Hmm, the current Npgsql v2.1.2.0 from Nuget shows the error. My version was v2.0.14.3 and that was working. Just checked in a new version of DatabaseSchemaReader that traps and ignores the error (it...
View Article