Data Adapter Configuration Wizard does not support over 100 columns ?

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

  1. #1

    Default Re: Data Adapter Configuration Wizard does not support over 100 columns ?

    I think that is how that works. I recommend you don't use the wizard in any
    case, as I think it is preferrable to code everything by hand. That way you
    know exactly what the code is, and you don't have to deal with wizard bugs.

    "RadekP" <radek@aldec.com> wrote in message
    news:eawtXxEWDHA.484@TK2MSFTNGP09.phx.gbl...
    > Hi All
    >
    > I encounter very limiting behavior of Data Adapter Configuration Wizard
    when
    > trying to select over 100 columns from SQL DB (either individually or by
    > "*"). The error screen is attached. It is SQL 7.0 though. Is it just me ?
    > Can anybody share similar experience ?
    >
    > Thanks. Best Regards
    >
    > Radek
    >
    >
    >

    Marina Guest

  2. Similar Questions and Discussions

    1. Custom ASP.NET Control configuration wizard
      I am writing a custom ASP.NET Control. It is usable from the visual studio toolkit. I would like to add a configuration wizard to it. I have seen...
    2. data connection wizard and web service
      Hi all, i created a web service written in java that returns an array. public String javaArray = { "array 1", "array 2" , "array 3" }; ...
    3. Using the Data Adapter Configuration Wizard
      I have been trying to design a Web Form using VB.Net 2002 that uses a DataGrid to display a MS Access database. When using the Data Adapter...
    4. Columns and Inherited Datagrid...Active Schema does not support columns
      I have a class which has inherited from datagrid, to provide some custom functionality, row select, mouse overs etc All is working fine apart from...
    5. Pad strings/concatenate columns to simulate data columns in ASP select box with SQL Server 2K
      Dale, Cast all the data to fixed character data type in your select statement. For example: select cast(au_id as char(12)) +...
  3. #2

    Default Re: Data Adapter Configuration Wizard does not support over 100 columns ?

    I think with the wizards, you can use them to create selects but not any
    update, insert or delete commands. The way I worked around it was to only
    select 100 items, create another da and then select the rest. Use a ds to
    display all records. Don't know if this will work in your case.

    All this said, I went back to coding it all by hand.

    --
    Brian P. Hammer
    "RadekP" <radek@aldec.com> wrote in message
    news:eawtXxEWDHA.484@TK2MSFTNGP09.phx.gbl...
    > Hi All
    >
    > I encounter very limiting behavior of Data Adapter Configuration Wizard
    when
    > trying to select over 100 columns from SQL DB (either individually or by
    > "*"). The error screen is attached. It is SQL 7.0 though. Is it just me ?
    > Can anybody share similar experience ?
    >
    > Thanks. Best Regards
    >
    > Radek
    >
    >
    >

    Brian P. Hammer Guest

  4. #3

    Default Re: Data Adapter Configuration Wizard does not support over 100 columns ?

    Thanks. I will handle that. At least I know I'm not the only one
    experiencing the problem. It's a rather cumbersome bug ..

    Radek


    "Brian P. Hammer" <bphammer@SpamMeNotCAAP.com> wrote in message
    news:OJ6xl4UWDHA.3924@tk2msftngp13.phx.gbl...
    > I think with the wizards, you can use them to create selects but not any
    > update, insert or delete commands. The way I worked around it was to only
    > select 100 items, create another da and then select the rest. Use a ds to
    > display all records. Don't know if this will work in your case.
    >
    > All this said, I went back to coding it all by hand.
    >
    > --
    > Brian P. Hammer
    > "RadekP" <radek@aldec.com> wrote in message
    > news:eawtXxEWDHA.484@TK2MSFTNGP09.phx.gbl...
    > > Hi All
    > >
    > > I encounter very limiting behavior of Data Adapter Configuration Wizard
    > when
    > > trying to select over 100 columns from SQL DB (either individually or by
    > > "*"). The error screen is attached. It is SQL 7.0 though. Is it just me
    ?
    > > Can anybody share similar experience ?
    > >
    > > Thanks. Best Regards
    > >
    > > Radek
    > >
    > >
    > >
    >
    >

    RadekP 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