Hello,

I did the following implementation:

         FBDA_M_IO = New FirebirdSql.Data.FirebirdClient.FbDataAdapter()
         FBDA_M_IO.TableMappings.Add("IO", "IO")
         FBCMD_M_IO_SELECT = New FbCommand("SELECT * FROM IO", 
FBConnection_MDB)
         FBDA_M_IO.SelectCommand = FBCMD_M_IO_SELECT
         FBCB_M_IO = New FbCommandBuilder(FBDA_M_IO)
         FBDA_M_IO.MissingMappingAction = 
Data.MissingMappingAction.Error
         MDS = New DataSet("MDS")
         FBDA_M_IO.Fill(MDS, "IO")

Now an exception is thrown which claims that there's no sourceColumn 
reference. Do I now have to add a reference column by column just to 
load a table from a dataadapter into a dataset?

And how do I handle constraints for example? Do I also have to add every 
constraint of my database to the dataset?
Or should I just wait until dataset update to handle all exceptions? 
Maybe this is not a good way because more changes can be lost if the 
update is not done immediately.

Regards,
Daniel

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Firebird-net-provider mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/firebird-net-provider

Reply via email to