Comment #1 on issue 118 by paul.dhertoghe: Retrieving the list of  
migrations currently applied to the database fails on Oracle with the  
Oracle ODP.NET driver 10.1.0.400
http://code.google.com/p/migratordotnet/issues/detail?id=118

Problem can be fixed by replacing  
_appliedMigrations.Add(reader.GetInt64(0)); with
_appliedMigrations.Add((long)reader.GetValue(0));
See updated TransformationProvider.cs in attachment.

Attachments:
        TransformationProvider.cs  25.5 KB

--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"migratordotnet-devel" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/migratordotnet-devel?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to