Using TableAdapters to Insert Related Data into an MS Access Database

Published 14 May 09 05:48 PM

I’ve posted before about how to use TableAdapters to update parent-child (master-detail) relationships against SQL server. It’s pretty straightforward and Visual Studio generates all the code for you to properly insert, update and delete your data. However if you’re using MS Access then there’s one thing that Visual Studio doesn’t do because it’s not supported when using Access.

How Parent-Child Inserts Work

When Visual Studio generates the insert commands on a SQL-Server TableAdapter it looks to see if the table’s primary keys are auto-generated (identity columns) and if so, Visual Studio will write an additional statement to retrieve the key using the SCOPE_IDENTITY functionality of SQL Server. When in the DataSet designer, if you look at the insert statement in the properties window for the SQLTableAdapter you will see two statements separated by a semi-colon:

image

INSERT INTO [dbo].[Products] ([ProductName], [SupplierID], [CategoryID], [QuantityPerUnit], [UnitPrice], [UnitsInStock], [UnitsOnOrder], [ReorderLevel], [Discontinued]) VALUES (@ProductName, @SupplierID, @CategoryID, @QuantityPerUnit, @UnitPrice, @UnitsInStock, @UnitsOnOrder, @ReorderLevel, @Discontinued);
SELECT ProductID, ProductName, SupplierID, CategoryID, QuantityPerUnit, UnitPrice, UnitsInStock, UnitsOnOrder, ReorderLevel, Discontinued FROM Products WHERE (ProductID = SCOPE_IDENTITY())

SQL Server supports batch statements through ADO.NET commands so this will populate the primary key back in the DataRow inside the DataSet as each row is inserted into the database. If you are enforcing foreign key constraints with a parent-child relation set up on two DataTables and you set the Update Rule to Cascade then any foreign key references will also be updated in the children. Because the TableAdapterManager will save the children after their parent records, when the child saves to the database it will contain the correct parent key which must already exist in the database before a child can be inserted in order to maintain referential integrity in the database.

Unfortunately Access doesn’t support batch statements. If you look at what is generated for Access you will only see one statement (also the OLEDB provider does not support named parameters hence the question mark placeholders):

INSERT INTO `Products` (`ProductName`, `SupplierID`, `CategoryID`, `QuantityPerUnit`, `UnitPrice`, `UnitsInStock`, `UnitsOnOrder`, `ReorderLevel`, `Discontinued`) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)

So if you are doing inserts, especially for related parent-child data, you need a way to intercept the DataRow and set the primary key right after the row is inserted into the database and before any children are inserted. There’s an excellent article by Bill Vaughn (VB MVP) that explains this issue as well as a KB Article that shows how to solve it using the DataAdapter. These were written before Visual Studio had the concept of TableAdapters (which were added in VS 2008) so let’s see how we could use this technique to enhance our TableAdapters via partial classes.

Setting up the Parent-Child DataSet

The first step is to make sure you set up the tables in your Access database to use the AutoNumber feature for the primary keys on the rows. Here I’m using Access 2007 against the Northwind Access database. AutoNumber is used for both the primary keys on the Products and Categories tables:

image

Next you need to make sure you set up the relationship on the DataSet properly so that the primary key on the parent will cascade to the foreign key on the child. Set the relation in the DataSet designer to "Both Relation and Foreign Key Constraint" and then set the Update and Delete rules to Cascade. Just right-click on the relation and select "Edit Relation" in the DataSet designer:

image image

Loading and Editing the Parent-Child DataSet

You now are telling the DataSet to enforce the foreign key relationship which means that you must have a parent for every child. This means you have to load the data in parent then child order. You also have to be careful with your queries. You have to make sure that every row in the child DataTable will have a corresponding parent row in the parent DataTable. This also means that you have to make sure to call EndEdit on any new parent BindingSource before any children can be added.

For example, from the Data Sources window drag the Categories parent table as details and the related child Products table as a DataGridView on the form and Visual Studio will generate the code to load and save our data.

image

Head over to the code behind and make sure that the parent is filled first before the child. Also make sure that EndEdit is called on the CategoriesBindingSource before a new product can be inserted into the DataGridView. EndEdit will flush the data row being edited by the controls into the DataTable. In this example I just am calling EndEdit on the CategoriesBindingSource when the user selects the grid.

Public Class Form1

    Private Sub CategoriesBindingNavigatorSaveItem_Click() _
            Handles CategoriesBindingNavigatorSaveItem.Click
        Me.Validate()
        'Call EndEdit on all BindingSources! 
        Me.CategoriesBindingSource.EndEdit()
        Me.ProductsBindingSource.EndEdit()
        Me.TableAdapterManager.UpdateAll(Me.ProductsDataSet)
    End Sub

    Private Sub Form1_Load() Handles MyBase.Load
        'Load parent before child!
        Me.CategoriesTableAdapter.Fill(Me.ProductsDataSet.Categories)
        Me.ProductsTableAdapter.Fill(Me.ProductsDataSet.Products)
    End Sub

    Private Sub ProductsDataGridView_Enter() Handles ProductsDataGridView.Enter
        'You must commit the parent row to the DataTable before adding child rows 
        Me.CategoriesBindingSource.EndEdit()
    End Sub

End Class

Note that anytime you call EndEdit and flush the data to the DataTable, the row must not fail any constraints either (i.e. if NULLs aren’t being allowed then you have to set those values). One way to handle this is to add code to set default values in the TableNewRow handler on the DataTable.

Enhancing the TableAdapter Partial Classes

 

 

 

Now for the good stuff. Like I mentioned in the beginning, you need a way to set the primary key on the parent right after the row is inserted into the database and before any children are inserted. Now that we have keys cascading we just need to write code to handle the RowUpdated event on the DataAdapter inside the TableAdapter partial class. TableAdapters are generated classes that Visual Studio creates for us from the DataSet designer. These classes are declared as Partial Classes so that means we can add code to the same class even if it’s in a separate file. Right-click on the TableAdapter class in the DataSet Designer and select View Code and the partial class file that you can edit will be created for you.

Namespace ProductsDataSetTableAdapters

    Partial Public Class CategoriesTableAdapter

    End Class

    Partial Public Class ProductsTableAdapter

    End Class
End Namespace

In these classes we can handle the RowUpdated event on the private variable _adapter which gives us access to the ADO.NET DataAdapter that is executing the updates to our rows. The way we retrieve the primary key is by executing the statement  SELECT @@IDENTITY which tells Access to send back the last primary key it used on the connection. Because you have to add this handler to all your TableAdapters that are working against MS Access, to make things more manageable you can create a class with a Shared (static) method to handle setting the key and then call that from the handlers.

Imports System.Data.OleDb

Public Class AccessIDHelper
    ''' <summary>
    ''' Retrieves the primary key autonumber values from Access
    ''' </summary>
    ''' <remarks></remarks>
    Public Shared Sub SetPrimaryKey(ByVal trans As OleDbTransaction, _
                                    ByVal e As OleDbRowUpdatedEventArgs)
        If e.Status = UpdateStatus.Continue AndAlso _
           e.StatementType = StatementType.Insert Then
            ' If this is an INSERT operation...
            Dim pk = e.Row.Table.PrimaryKey
            ' and a primary key column exists...
            If pk IsNot Nothing AndAlso pk.Count = 1 Then
                Dim cmdGetIdentity As New OleDbCommand("SELECT @@IDENTITY", trans.Connection, trans)
                ' Execute the post-update query to fetch new @@Identity
                e.Row(pk(0)) = CInt(cmdGetIdentity.ExecuteScalar)
                e.Row.AcceptChanges()
            End If
        End If
    End Sub
End Class

Namespace ProductsDataSetTableAdapters

    Partial Public Class CategoriesTableAdapter

        Private Sub _adapter_RowUpdated(ByVal sender As Object, _
                                        ByVal e As System.Data.OleDb.OleDbRowUpdatedEventArgs) _
                                        Handles _adapter.RowUpdated

            AccessIDHelper.SetPrimaryKey(Me.Transaction, e)
        End Sub
    End Class

    Partial Public Class ProductsTableAdapter

        Private Sub _adapter_RowUpdated(ByVal sender As Object, _
                                        ByVal e As System.Data.OleDb.OleDbRowUpdatedEventArgs) _
                                        Handles _adapter.RowUpdated

            AccessIDHelper.SetPrimaryKey(Me.Transaction, e)
        End Sub
    End Class
End Namespace

So that’s how you can get the primary keys into the data rows and have them properly cascaded to the child rows. So now when the children are updated they will have the correct foreign key and the parent will exist in the database. I hope this helps clear up how to work with Access and Visual Studio. 

I’ve posted this example on CodeGallery so have a look.

Enjoy!

Comment Notification

If you would like to receive an email when updates are made to this post, please register here

Subscribe to this post's comments using RSS

Comments

# Anith &raquo; Using TableAdapters to Insert Related Data into an MS Access Database said on May 14, 2009 9:33 PM:

PingBack from http://www.anith.com/?p=37999

# Visual Studio Data said on May 15, 2009 9:54 PM:

I’ve posted before about how to use TableAdapters to update parent-child (master-detail) relationships

# grovelli said on June 4, 2009 8:42 AM:

Hi Beth, I'm confused, are the DataSet designer and Data Sources window available in Access?

# Beth Massi said on June 4, 2009 1:40 PM:

Hi grovelli,

Sorry I wasn't clear. You can use *Visual Studio* to connect to Access databases throgh the ADO.NET OleDb client classes. Design your database in Access then use Visual Studio to design the application and use the DataSet designer and Data Sources window in VS to connect to the Access database file.

A scenario where this is appropriate is if you are migrating to .NET from Access or VB6 and need to keep the data in Access or if you are creating small business applications. Access databases are multi-user file-based databases so they can't scale or give you the security like SQL Server but a lot of small businesses use them.

However for new .NET development I'd suggest using SQL Compact instead (if your application is single-user) or using the free SQL Express version (if you need multi-user). You get more capibilities and SQL integrates better with Visual Studio.

HTH,

-B

# grovelli said on June 4, 2009 2:57 PM:

Try as they might, they will never be able to replace Access for its unrivalled flexibility, topflight reporting engine with pivot tables and pivot charts, tight interface with the rest of the Office suite... ;-)

# Andrew said on June 26, 2009 5:35 PM:

Do you think the lack of the code found in this blog is the reason why I keep getting the error "Cannot clear table tblPhone because ForeignKeyConstraint tblPhonetblConsignee enforces constraints and there are child rows in table tblConsignee" every time I delete a parent record (one that is not linked to a child) and then try to re-fill the table adapters? (I am using an Access Database that does not use cascading for deletion, but makes sure that a parent record cannot be deleted if it is linked to a child).

# Beth Massi said on June 26, 2009 5:45 PM:

Hi Andrew,

It sounds like you still have abandoned child rows. Make sure when you refill, that you fill the parent table first and then the child table.

I'd also try setting the cascade on Updates and Deletes on the DataSet relation (like I show above in the dataset designer).

If that doesn't work you may also want to try setting EnforceConstraints on the dataset to False while you are refilling the tables and then set back to True again after the fill. If it fails when you try to re-enable the constraints, look at the data in the dataset and you should see the abandoned child rows. This would mean that you probably need to adjust your TableAdapter query.

HTH,

-B

# Andrew said on June 26, 2009 5:49 PM:

Worked perfectly.  You are awesome!  Thank you!

# Beth Massi said on June 26, 2009 5:53 PM:

Thanks, my mom thinks so too ;-) Glad you got it working!

# Kostas Kitsakis said on July 2, 2009 1:49 PM:

At the part

Enhancing the TableAdapter Partial Classes you say: "Right-click on the TableAdapter and select View Code and the partial class file that you can edit will be created for you"

I did this on the table icons which are at the bottom of the Form1.vb [Design] tab but it only shows me the existing main form code (without these partial classes).

Do you have any idea why this is happening?

# Beth Massi said on July 2, 2009 8:48 PM:

Hi Kostas,

You need to right-click on the TableAdapter *class definition* not the instance on the form. Open the DataSet designer (double-click on the dataset.xsd in the Solution Explorer).

HTH,

-B

# Kostas Kitsakis said on July 5, 2009 7:56 AM:

Thank you very much, for your answer Beth,

by right-click on the dataset.xsd in the Solution Explorer and select View code the dataset.vb file shows but it's empty. I typped your code and now the primary key is updated from the database.

of cource your way is simpler,

Thanx again...

# Mike said on July 28, 2009 12:43 AM:

Thank you Beth for explaining this.

Do you happen to have a C# version of the code?

Mike

# Cesar said on August 6, 2009 11:45 AM:

Hi Beth,

I get here by google search. I'm working with MS Access Database 2003 and VS 2005.

When I do: "Right-click on the TableAdapter class in the DataSet Designer and select View Code", the partial class file created does not looks like you post it. I even can't see its namespace.

It shows the Dataset Partial class instead of TableAdapter Partial class, and the partial class for the tables too. That's what it shows.

How can I get the TableAdapter partical class?

Can I overwrite the partial class created by default, and paste what you post (namespace and tableadapter partial classes)?

I would like VB do it by itself as you said.

I have tried many times many ways with no results

I appreciate yuor help

Regards,

Cesar

# Beth Massi said on August 6, 2009 11:52 AM:

Hi Cesar,

Did you right-click on the TableAdapter or the DataSet? You can also double-click on the TableAdapter name (under the dataset). You can also just copy the code into the partial class file I have above, including the tableadapter namespace.

HTH,

-B

# cparralesl said on August 6, 2009 1:01 PM:

Hi Beth!,

Nice to have you response!

In the DataSet Designer, I select the table then I right-click on the TableAdapter, Which is beneath the list of columns name of the table, and finally select View code.

My main question is how can I get the TableAdapter Class code?

I appreciate you help.

Regards,

# Beth Massi said on August 6, 2009 1:29 PM:

Try double-clicking on the TableAdapter. I have a feeling you aren't selecting it first.

# cparralesl said on August 6, 2009 3:42 PM:

Thanks Beth, I'll try it later and carefully bacuase I still have the same problem.

I appreciate your time.

Regards,

Cesar.

# Beth Massi said on August 6, 2009 4:00 PM:

No problem, Cesar. You can also just copy the code (including the namespace) directly into the partial class file.

# Cesar said on August 7, 2009 3:57 PM:

Beth,

I just realize that i don't have the "TableAdapterManager" that appears in your form.

I also have the problem with "If pk IsNot Nothing AndAlso pk.Count = 1 Then" sentence. The propery count does not appear. And  with "AccessIDHelper.SetPrimaryKey(Me.Transaction, e)". The Transaccion propery/method does not appear too.

Do you think the TableAdapterManager  would be the problem?

How do i get it in my form?

Thanks inadvance for your help

Regards,

# cparralesl said on August 7, 2009 5:54 PM:

Few minutes ago I send you a question, but just in case, here it its again

Reviewing and doing all againg I have the following:

I see a "TablaAdapterManager" in your form picture, which is not in mine.How do I get it? It is something wrong I'm missing?

My "pk" does not have the "Count" Property. It shows others. What do I have to check?

In the line: "AccessIDHelper.SetPrimaryKey(Me.Transaction, e)" the  "Me" does not have "Transaction" property. Again, what do I have to check?

I allways appreciate yours Anwers.

Regards,

# Beth Massi said on August 10, 2009 1:31 PM:

Hi Cesar,

You need to be running Visual Studio 2008 (or Express) to see the TableAdapterManager. I'm also taking adantage of type inference in 2008 which automatically infers the type of the DataColumn array. You could also declare the line:

Dim pk As DataColumn() = ....

# Cesar said on August 10, 2009 2:50 PM:

Hi Beth!

Many thanks for your answers.

I' try to move on the next version of VS. In the mid time 'I'll try to figure out how to do it with I have.

Again, many thanks for you time,

Cesar

# Senol said on September 28, 2009 8:12 AM:

Hi really nice explanation.

I have the same question like Mike before. How we can do this in C#?

thanks

Senol

# Beth Massi said on September 28, 2009 1:59 PM:

Hi Senol,

The technique is the same in C#. Just add an event handler to the DataAdapter's RowUpdated event to execute the additional command to retrieve the key.

HTH,

-B

# Eric said on October 5, 2009 7:17 PM:

In C#, where can you hook up the event handler in the partial class?  Don't you need to do that within a method?

Thanks,

-e

# Beth Massi said on October 5, 2009 7:54 PM:

Hi Eric,

Because C# doesn't have declarative event handlers, you need to manually add an event handler in the EndInit method. See this walkthrough for more information:

http://msdn.microsoft.com/en-us/library/ms171930.aspx

HTH,

-B

# Eric said on October 5, 2009 8:03 PM:

OK, so I tried looking for a virtual or partial method in the generated TableAdapter class that I could use to do the event hookup.  It doesn't look like there is one.  (Were TableAdapters a product of the VB team?  Certainly this blog is the best documentation that exists.)

Anyway, I gave it up and just created new methods which must be explicitly called from elsewhere in the application.  Here is the result in C# (which is still giving me problems... see below):

namespace WpfTest.RfpsTableAdapters {

       public partial class RfpsTableAdapter

       {

           public void HookUpEvents()

           {

               this._adapter.RowUpdated += new OleDbRowUpdatedEventHandler(_adapter_RowUpdated);

           }

           private void _adapter_RowUpdated(object sender, OleDbRowUpdatedEventArgs e)

           {

               AccessIDHelper.SetPrimaryKey(this.Transaction, e);

           }

       }

       public partial class ChargesTableAdapter

       {

           public void HookUpEvents()

           {

               this._adapter.RowUpdated += new OleDbRowUpdatedEventHandler(_adapter_RowUpdated);

           }

           private void _adapter_RowUpdated(object sender, OleDbRowUpdatedEventArgs e)

           {

               AccessIDHelper.SetPrimaryKey(this.Transaction, e);

           }

       }

   public class AccessIDHelper

   {

       public static void SetPrimaryKey(OleDbTransaction trans, OleDbRowUpdatedEventArgs e)

       {

           if ((e.Status == System.Data.UpdateStatus.Continue) && (e.StatementType == System.Data.StatementType.Insert))

           {

               System.Data.DataColumn[] pk = e.Row.Table.PrimaryKey;

               if ((pk != null) && (pk.Length == 1))

               {

                   OleDbCommand cmdGetIdentity = new OleDbCommand("SELECT @@IDENTITY", trans.Connection, trans);

                   e.Row[pk[0]] = (int)(cmdGetIdentity.ExecuteScalar());

                   e.Row.AcceptChanges();

               }

           }

       }

   }

}

It compiles, but now I'm getting a NullReferenceException because this.Transaction is null.  Not sure why yet...

# Eric said on October 5, 2009 8:14 PM:

Oops, it looks like we were typing simultaneously.  Thanks for the fast reply.

Thanks to that link, I see what I was missing (and will now share so that no one else has to slap their forehead with so much vigor)... there is no EndInit() method in the generated code, but it *is* present on System.Data.DataSet, so you can just override it.

I'll repost a clean version of the code above once I make sure it works.

# Beth Massi said on October 5, 2009 8:22 PM:

Hi Eric,

Actually for the TableAdapter you should be able to just write a constructor in your partial class that does the event handler hookup. Have you tried that already?

-B

# Eric said on October 5, 2009 8:33 PM:

It looks like the TableAdapter already has a parameterless constructor, and it isn't marked as virtual or override. Can I still make a constructor?  Or are you thinking that I could make a new constructor with a different definition, like: public TableAdapter(bool HookUpStuff) ?

Thanks,

Eric

# Eric said on October 5, 2009 9:06 PM:

Unfortunately, I'm still having some problems with the transaction being null.  From looking at the designer code, I can't see where the Transation/_transaction value would be set... any ideas?

Is the syntax OK?  Is this.Transaction the C# equivalent of Me.Transaction in VB?  I seem to recall reading something about "Me" having a bit of extra functionality.

Thanks,

Eric

# C# Coder said on October 8, 2009 1:24 PM:

It would be great if some one get this working in C#....

# Beth Massi said on October 9, 2009 6:19 PM:

Hi Eric,

Remember that this is a partial class (I even forget sometimes) not a child class, there's no inheritance here. You just have two files for a single class definition in this case. So unfortunately a constructor approach won't work either. You need to have this in a init method or a method that runs first in order to hook up the events properly. That may be why your transaction is null, but that doesn't seem right.

VB hooks up the handlers for you when the class is constructed with the Handles syntax so you need to find a way to do the same. Maybe the C# forums can help. I'll try to play with this and let you know if I can find a way to get it working in C#.

Other option is to have a VB data access layer ;-)

-B

# Craig said on October 15, 2009 7:55 AM:

I've used Oracle for years and am pretty good with SQL but I am new to Visual Studio 2008 and VB in general so I am experimenting.  I'm creating a contacts application with three tables, "Family", "Member", and "Communication".  I have one Master-Detail form with with the Family as the Parent and Member as child data.  I set it up as Family being basic information of the family and a DataGridView showing individual members of the family with other information like birthday, etc...

I'm trying to conduct a Search routine for Family.  I've got most of the code from one of your videos but because I have foreign key constraints it's not working.  It gives me the following error:

"Cannot clear table Family because ForeignKeyConstraint FK_Member_Family enforces constraints and there are child rows in Member."

In another comment on this page you told someone to set EnforceConstraints to false, which I did and it works but when I set it back to True it gives me this error:

"Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints."

I perform my search by putting code on the Double-Click to Enter Search Mode, and then perform the Search on the KeyDown (enter key). One problem I am seeing is I think I need to clear out the DataGridView when I enter search mode (double-click).  And then when I perform the search, have it automatically fill in the DataGridView.

I hope I am clear on this.

Thanks and your videos are great and very helpful, please add more.

# Eric said on October 20, 2009 6:32 PM:

Wow, this is frustrating...

It looks like the code I posted above works using a Winforms app built using VS2008.  Unfortunately for me, I'm trying to play with VS2010 using WPF.

I'm coming to the conclusion that data binding in WPF will be the bane of my existence.  There are so many levels of poorly-documented indirection that dozens of trips through the generated code (after disabling Just-My-Code, of course) still leave me no closer to figuring out what is going on here.

Anyway, thanks for posting a great article on how to deal with Access.  Hopefully the C# version will be of use to someone.

# Beth Massi said on October 22, 2009 9:57 AM:

Hi Eric,

I don't see why this code wouldn't work with WPF data binding. The code above is more about the DAL, not the UI data binding. You may want to check out these videos to see if they help:

http://msdn.microsoft.com/en-us/vbasic/bb466226.aspx#wpfdata

HTH,

-B

# Jackie Shen said on October 28, 2009 8:11 PM:

I have been troubled by this problem(parent child table update) for a very long time.

Although I don't use sql ce db,I find this article particularly useful.

And the key point are:

1. Set the relation in the DataSet designer to  "Both Relation and Foreign Key Constraint" and then set the Update and Delete rules to Cascade

2.Make sure that EndEdit is called on the CategoriesBindingSource before a new product can be inserted into the DataGridView.

Thanks a lot!

# ewall said on November 4, 2009 1:29 PM:

Thank you! I solved my ODBCDataSet's "identity crisis" with your IDHelper method... Just had to change the OleDb* objects to Odbc*.

# Patric said on November 24, 2009 3:23 PM:

Hi,

am using VS 2005 and get this errors:

Error 1 Handles clause requires a WithEvents variable defined in the containing type or one of its base types. D:\Visual Studio 2005\Projects\PeLogg\PeLogg\PelletsdatabasUtvecklingDataSet.vb 7 53 PeLogg

Error 2 'Transaction' is not a member of 'PeLogg.peloggLeveranserRaderDataTable'. D:\Visual Studio 2005\Projects\PeLogg\PeLogg\PelletsdatabasUtvecklingDataSet.vb 9 38 PeLogg

for each Partial Public Class

Do I have to do something diffrent in VS2005?

# Mikhail Mozolin said on November 28, 2009 8:55 AM:

Here some code to do the same thing for Microsoft SQL Server Compact Edition

Partial Public Class JOBSTableAdapter

       Private Sub _adapter_RowUpdated(ByVal sender As Object, _

                                               ByVal e As System.Data.SqlServerCe.SqlCeRowUpdatedEventArgs) _

                                               Handles _adapter.RowUpdated

           SQLCEIDHelper.SetPrimaryKey(Me.Connection, e)

       End Sub

   End Class

   Public Class SQLCEIDHelper

       ''' <summary>

       ''' Retrieves the primary key autonumber values from SQL CE

       ''' </summary>

       ''' <remarks></remarks>

       Public Shared Sub SetPrimaryKey(ByVal conn As SqlCeConnection, _

                                       ByVal e As SqlCeRowUpdatedEventArgs)

           If e.Status = UpdateStatus.Continue AndAlso _

              e.StatementType = StatementType.Insert Then

               ' If this is an INSERT operation...

               Dim pk = e.Row.Table.PrimaryKey

               ' and a primary key column exists...

               If pk IsNot Nothing AndAlso pk.Count = 1 Then

                   Dim cmdGetIdentity As New SqlCeCommand("SELECT @@IDENTITY", conn)

                   ' Execute the post-update query to fetch new @@Identity

                   Dim id As Integer

                   id = CInt(cmdGetIdentity.ExecuteScalar)

                   e.Row(pk(0)) = id

                   e.Row.AcceptChanges()

               End If

           End If

       End Sub

   End Class

# Beth Massi said on December 1, 2009 10:17 AM:

Thanks Mikhail Mozolin,

I also wrote an article on how to do this with SQL CE here:

http://blogs.msdn.com/bethmassi/archive/2009/09/15/inserting-master-detail-data-into-a-sql-server-compact-edition-database.aspx

HTH,

-B

Leave a Comment

(required) 
(optional)
(required) 

  
Enter Code Here: Required

About Beth Massi

Beth is a Program Manager on the Visual Studio Community Team at Microsoft and is responsible for producing and managing content for business application developers, driving community features and team participation onto MSDN Developer Centers (http://msdn.com), and helping make Visual Studio one of the best developer tools in the world. She also produces regular content on her blog (http://blogs.msdn.com/bethmassi), Channel 9, and a variety of other developer sites and magazines. As a community champion and a long-time member of the Microsoft developer community she also helps with the San Francisco East Bay .NET user group and is a frequent speaker at various software development events. Before Microsoft, she was a Senior Architect at a health care software product company and a Microsoft Solutions Architect MVP. Over the last decade she has worked on distributed applications and frameworks, web and Windows-based applications using Microsoft development tools in a variety of businesses. She loves teaching, hiking, mountain biking, and driving really fast.

This Blog

Syndication

Page view tracker