New Post: DB2 iSeries
Don't worry about the keys and indexes on my behalf. My requirement is to simply compare the table and column definitions across several types of databases.
View ArticleNew Post: DB2 iSeries
Please don't waste your weekend on DB2 schema definitions. Life is too short.
View ArticleNew Post: DB2 iSeries
There is a planning release binary here: http://dbschemareader.codeplex.com/releases/view/612558 You will almost certainly have an error, and maybe for the next version too... But we should flush the...
View ArticleNew Post: DB2 iSeries
Sweet. I'll keep you posted if I run into anything more than garden-variety exceptions. d.
View ArticleNew Post: DB2 iSeries
I corrected my boneheaded code to:dataGridView1.DataSource = dataSet.Tables[0] It worked like a charm against the DB2 iSeries database, and that's no easy feat. Impressive work. Thanks, David Woosley...
View ArticleNew Post: DB2 iSeries
Martin, Good morning. I'm getting the error shown below on the DB2 iSeries. Granted, I'm not using the planning release binary to which you linked above.Critical: Column 'COLUMN_NAME' does not belong...
View ArticleNew Post: DB2 iSeries
I'm using this code, which works perfectly against MySQL. var schemaReader = new SchemaReader(myConnectionString, myProvider); var dataset = schemaReader.Table(myTableName); var dataTable =...
View ArticleNew Post: DB2 iSeries
Yes, unfortunately the datatables are different. In MySql and SqlServer it's COLUMN_NAME, in DB2 it's ColumnName, in postgresql it's Name. Other properties have even more variation. The SchemaReader...
View ArticleNew Post: DB2 iSeries
I don't mind hard-coding the two ways at this time. What's your projected release date on the new version? Next 60 days? We are definitely not in a hurry.
View ArticleNew Post: DB2 iSeries
The planned release will probably go stable around end March/start April.
View ArticleNew Post: DB2 iSeries
I'm using your 2.0 version from the root folder of your installation, so it's probably not you. I'll let you know either way. Give me a few. Thanks.
View ArticleNew Post: DB2 iSeries
Please confirm: The DatabaseSchemaReader.dll of exactly 413,184 bytes will run with only .NET 3.5 installed? (The DLL in the net4 folder is exactly 413,696 bytes.) Thanks.
View ArticleNew Post: DB2 iSeries
Martin, Our tests strongly suggest that DatabaseSchemaReader.dll depends on something higher than .NET 3.5. A published project that doesn't use your DLL runs fine on 3.5, whereas the same project that...
View ArticleNew Post: DB2 iSeries
Odd. I've certainly had to deploy to XP and Win2003 without .net 4 before now, but now we are using msbuild from 4.5. According to the documentation, msbuild and Visual Studio should still build all...
View ArticleNew Post: DB2 iSeries
When your DLL is referenced in the project, we get this message upon startup:Unable to find a version of the runtime to run this application. Also, I just confirmed that the application is running with...
View ArticleNew Post: DB2 iSeries
There are well known problems with 4.5 and 4.0, which had some breaking changes despite both 4.0 and 4.5 identifying as "v4.0.30319". This didn't seem to happen with v2.0/3.0/3.5, which are all...
View Article