Duwamish Framework--Filling DataSet

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Duwamish Framework--Filling DataSet

    I'm trying to use the Duwamish 7.0 Framework to make a
    distributed application.

    I re-wrote parts of the application to work with Students
    instead of Customers. So instead of a unique email
    constraint I have a unique constraint on FirstName,
    LastName, DateOfBirth combination.

    Whenever I try to fill a brand new StudentData (instead of
    CustomerData) object, I get the following error...
    Failed to enable constraints. One or more rows contain
    values violating non-null, unique, or foreign-key
    constraints.

    I debugged right down to the line of code where it
    happens...
    StudentData data = new StudentData();
    //
    // Get the load command
    //
    dsCommand.SelectCommand =
    GetLoadCommandByNameAndDateOfBirth();
    dsCommand.SelectCommand.Parameters[FIRST_NAME_PARM].Value
    = FirstName;
    dsCommand.SelectCommand.Parameters[LAST_NAME_PARM].Value =
    LastName;
    dsCommand.SelectCommand.Parameters
    [DATE_OF_BIRTH_PARM].Value = DateOfBirth;

    DataSet data2 = new DataSet();
    dsCommand.Fill(data2); //this works all the time
    dsCommand.Fill(data); //this doesn't work when the data
    I'm searching exists in the database

    Any ideas?

    Thanks!
    -Paul
    Paul Guest

  2. Similar Questions and Discussions

    1. Dataset.length(), dataset.hasnext() not working.. Why?
      I have a dataset that has 3 items, yet when I test for it, it is "undefined". Any ideas why this property would not be available? Thanks Geoff
    2. Filling dataset with form data
      I have a few textboxes to hold x, y, z dimensions and weight per item. The user may have different number of items so I will have one set of these...
    3. Unspecified error when filling dataset?
      Hi everyone: What am I doing wrong?--- I'm going bonkers with this one... on the CustDA.Fill(custDS) line, I get an "Unspecified Error"... ...
    4. dataset.Databind error when dataset XML contains attributes...
      I've come accross an interesting problem populating an asp.net datagrid. I am trying to bind XML data to a datagrid as I've done in countless other...
    5. Ccopying a datatable content from an untyped dataset into a table which is inside a typed dataset
      Hi All, I am facing problem in copying content of table from a untyped dataset into to a table inside the typed dataset. I wanted to copy the data...
  3. #2

    Default Re: Duwamish Framework--Filling DataSet

    Side Note: FirstName LastName and DateOfBirth IS NOT Unique.
    that has nothing to do with your problem?
    Might need to check things in your Database

    "Paul" <Paul@PaulWantsHelp.com> wrote in message
    news:008901c35eb2$87b1c530$a601280a@phx.gbl...
    > I'm trying to use the Duwamish 7.0 Framework to make a
    > distributed application.
    >
    > I re-wrote parts of the application to work with Students
    > instead of Customers. So instead of a unique email
    > constraint I have a unique constraint on FirstName,
    > LastName, DateOfBirth combination.
    >
    > Whenever I try to fill a brand new StudentData (instead of
    > CustomerData) object, I get the following error...
    > Failed to enable constraints. One or more rows contain
    > values violating non-null, unique, or foreign-key
    > constraints.
    >
    > I debugged right down to the line of code where it
    > happens...
    > StudentData data = new StudentData();
    > //
    > // Get the load command
    > //
    > dsCommand.SelectCommand =
    > GetLoadCommandByNameAndDateOfBirth();
    > dsCommand.SelectCommand.Parameters[FIRST_NAME_PARM].Value
    > = FirstName;
    > dsCommand.SelectCommand.Parameters[LAST_NAME_PARM].Value =
    > LastName;
    > dsCommand.SelectCommand.Parameters
    > [DATE_OF_BIRTH_PARM].Value = DateOfBirth;
    >
    > DataSet data2 = new DataSet();
    > dsCommand.Fill(data2); //this works all the time
    > dsCommand.Fill(data); //this doesn't work when the data
    > I'm searching exists in the database
    >
    > Any ideas?
    >
    > Thanks!
    > -Paul

    MS News \(MS ILM\) Guest

  4. #3

    Default Re: Duwamish Framework--Filling DataSet

    Create a datarealation amongst the columns.

    "MS News (MS ILM)" <sql_agentman@hotmail.com> wrote in message
    news:u7FAPYrXDHA.1896@TK2MSFTNGP12.phx.gbl...
    > Side Note: FirstName LastName and DateOfBirth IS NOT Unique.
    > that has nothing to do with your problem?
    > Might need to check things in your Database
    >
    > "Paul" <Paul@PaulWantsHelp.com> wrote in message
    > news:008901c35eb2$87b1c530$a601280a@phx.gbl...
    > > I'm trying to use the Duwamish 7.0 Framework to make a
    > > distributed application.
    > >
    > > I re-wrote parts of the application to work with Students
    > > instead of Customers. So instead of a unique email
    > > constraint I have a unique constraint on FirstName,
    > > LastName, DateOfBirth combination.
    > >
    > > Whenever I try to fill a brand new StudentData (instead of
    > > CustomerData) object, I get the following error...
    > > Failed to enable constraints. One or more rows contain
    > > values violating non-null, unique, or foreign-key
    > > constraints.
    > >
    > > I debugged right down to the line of code where it
    > > happens...
    > > StudentData data = new StudentData();
    > > //
    > > // Get the load command
    > > //
    > > dsCommand.SelectCommand =
    > > GetLoadCommandByNameAndDateOfBirth();
    > > dsCommand.SelectCommand.Parameters[FIRST_NAME_PARM].Value
    > > = FirstName;
    > > dsCommand.SelectCommand.Parameters[LAST_NAME_PARM].Value =
    > > LastName;
    > > dsCommand.SelectCommand.Parameters
    > > [DATE_OF_BIRTH_PARM].Value = DateOfBirth;
    > >
    > > DataSet data2 = new DataSet();
    > > dsCommand.Fill(data2); //this works all the time
    > > dsCommand.Fill(data); //this doesn't work when the data
    > > I'm searching exists in the database
    > >
    > > Any ideas?
    > >
    > > Thanks!
    > > -Paul
    >
    >

    Vai2000 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139