StrataFrame Team
|
|
Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
No problem We do that all the time. In fact, Steve and I were working on one yesterday and kept getting an error sayind that field such-and-such wasn't part of the table... ??? Well, as it turns out, we had just that morning moved our connection string over to a different database that contained some test data. Spent well over an hour stepping through the code thinking there was a bug
|
|
|
Andria Jensen
|
|
Group: Forum Members
Posts: 336,
Visits: 497
|
Ok, for some reason you made me think of what I was doing wrong here. We have LOTS of databases that we use, and I was simply looking at the one I was running with and not the one I was mapping to. I kept changing it in the one I was running with, so of course when I stepped through code it was changed. But, the BO Mapper was still getting the SmallDateTime because I hadn't changed it in the mapped db. Now I feel dumb...haha. Sorry for the false alarm, but thanks for helping me through it.
|
|
|
StrataFrame Team
|
|
Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
OK, I've been looking through the code that generates the partial classes for business objects, and the only SQL data type that uses SmallDateTime is SmallDateTime. So, it could be that your business object is mapped in the BOMapper to a DDT profile rather than the actual SQL Server and the field is still SmallDateTime in the DDT. Or vice versa, it's mapped to SQL Server and the actual field's data type wasn't changed. If the actual source of the column is properly set to SmallDateTime, then there must be a problem with the GetSchema() method of the SQL Server connection returning the proper value.
|
|
|
Andria Jensen
|
|
Group: Forum Members
Posts: 336,
Visits: 497
|
No, I changed it to a DateTime in the designer line but it changed back to a SmallDateTime when I rebuilt the partial. For whatever reason it just won't let go of that original SmallDateTime type. Let me know what you find out...hopefully I can get a fix for this so I can continue working on this piece of code. Thanks for the help!
|
|
|
Trent Taylor
|
|
Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
I think this may be a bug because it should be changing that back to DateTime if I rebuild the partial shouldn't it? Hmmm...yes you are correct. I will have to look into this. If you remove that field descriptor class and rebuild the partial, does it show back up correctly? Or, if you just change it to represent a DateTime and rebuild the partial does it leave it alone? In either case, I am glad you found your problem. I will look into this from a BO Mapper perspective.
|
|
|
Andria Jensen
|
|
Group: Forum Members
Posts: 336,
Visits: 497
|
OK, I think I've found the issue. In the designer code of the BO, inside the New()...there is a block of FieldNativeDbTypes.Add methods for each field. The field in question still has this line of code: _FieldNativeDbTypes.Add( "InsurerExpire", System.Data.SqlDbType.SmallDateTime)I think this may be a bug because it should be changing that back to DateTime if I rebuild the partial shouldn't it?
|
|
|
Andria Jensen
|
|
Group: Forum Members
Posts: 336,
Visits: 497
|
Ok, I'm trying to step throught the code and figure out what's going on here. I am seeing something that looks a little suspicious and mayb eyou can explain it. In the DataLayer.vb code inside the BuildInsertInfo function I am stepping through where it is building the QueryInformation object. There are a few lines towards the end that set some 'misc properties'. One of these is loInfo.FieldNativeDbTypes = Me._BusinessObject.FieldNativeDbTypes. When I inspect the contents of these, all of my fields that are normal DateTime types have a value of 4. However, the field in question has a value of 15. I am assuming this is a SmallDateTime. Where is the business object getting these types from and could this somehow be affecting what's going on here? Also...if this problem would be more quickly solved via a look at my computer, I can set that up if necessary.
|
|
|
Trent Taylor
|
|
Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
Have you built the framework in debug mode and see where the point of failure is through a debug session? The BO really doesn't know about the SmallDateTIme. So without being in your seat and performing a debug, there is no way for me to give you a direct answer here.
|
|
|
Andria Jensen
|
|
Group: Forum Members
Posts: 336,
Visits: 497
|
Also, if this were a sql error wouldn't there be an entry in the sql debug log? In the sql log I have it doesn't have any sql for the event I'm getting the error message on.
|
|
|
Andria Jensen
|
|
Group: Forum Members
Posts: 336,
Visits: 497
|
I did verify that the type was changed to a regular DateTime in Enterprise Manager. I have also been able to run a sql update statement through query analyzer to set the date to be 01/01/1800 and it works correctly. I didn't think the BO knew anything about SmallDateTime, but I'm just not sure where to look anymore.
|
|
|