Your kidding me right?

T

Tony Van

I'm a VB6 programmer trying to make the transition to .NET

I just spend many days learning about Datasets and
DataAdapters and
spend most of two days trying to code an UPDATE command for
the dataadapter along with the parameters for a large
rowset-- and a 1/2 day getting all
the typing errors out.

I'm still not sure if it's going to work.

Its this it? Is this how it's done? This is supposed to
make me
more productive? Please tell me there is an easier way to
do this.

ADO.NET has me longing for my Vb6 disconnected recordsets .

Sorry for the vent. I'm very frustrated with the slowness
of my conversions.
 
M

Miha Markic [MVP C#]

Why don't you start by reading a book, such as Sahil Malik's Pro ado.net 2
(assuming you are on .net 2)
 
W

William \(Bill\) Vaughn

Or my book that covers ADO to ADO.NET transitioning. (ADO and ADO.NET Best
Practices for VB Programmers (APress)).

--
____________________________________
William (Bill) Vaughn
Author, Mentor, Consultant
Microsoft MVP
INETA Speaker
www.betav.com/blog/billva
www.betav.com
Please reply only to the newsgroup so that others can benefit.
This posting is provided "AS IS" with no warranties, and confers no rights.
__________________________________

Miha Markic said:
Why don't you start by reading a book, such as Sahil Malik's Pro ado.net 2
(assuming you are on .net 2)

--
Miha Markic [MVP C#, INETA Country Leader for Slovenia]
RightHand .NET consulting & development www.rthand.com
Blog: http://cs.rthand.com/blogs/blog_with_righthand/

Tony Van said:
I'm a VB6 programmer trying to make the transition to .NET

I just spend many days learning about Datasets and DataAdapters and
spend most of two days trying to code an UPDATE command for
the dataadapter along with the parameters for a large rowset-- and a 1/2
day getting all
the typing errors out.

I'm still not sure if it's going to work.

Its this it? Is this how it's done? This is supposed to make me
more productive? Please tell me there is an easier way to do this.

ADO.NET has me longing for my Vb6 disconnected recordsets .

Sorry for the vent. I'm very frustrated with the slowness of my
conversions.
 
G

grant

Depending on your type of application ADO.NET datasets may not be
necessarily the best choice. Datasets work well where you need a
completely disconnnected solution that can be scaled to hundreds or
thousands of users. However, IMHO, for small business applications
that support a few users where you would previously have used connected
ADO recordsets then ADO.NET involves a lot of overhead - both
programming and also runtime.

You can of course still use ADODB in .NET for these type of
applications - however you miss out on one of the major benefits of the
..NET architecture - data binding. If you are building this type of
application or particularly if you are porting existing VB6 ADO code
then Infralution has a solution that can help. Our Virtual Data
Objects library allows you to bind .NET controls to ADODB recordsets.
If you are interested you can find more information at
www.infralution.com/virtualdata.html

Regards
Grant Frisken
Infralution
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top