Ask a Question related to ASP.NET General, Design and Development.
-
Kenneth #1
Database cursors in .NET 2003
Hi,
What was lacked in .NET 2002 was a database cursor that
did the same thing as in traditional ASP, i.e. .MoveFirst,
MoveNext and so on.
I've been reading articles and books where it's been said
that in a future version of ADO.NET there should come
these cursors that where you can move through a dataset
with .MoveNext and it's alike, not having to deal with the
index of the dataset.
Has tis been implemented in .NET 2003? And if, where can I
find it in MSDN?
/Kenneth
Kenneth Guest
-
Cursors
How do I set the cursor to a pointing finger? I notice that the documentation specifies certain cursors - i.e.' cursor 4' changes it to an hour... -
posible BUG in CURSORS...
Hello, The lingo function CURSOR sometimes it's out of order... Exist an solution for it? Thanks, Gabriel -
Custom Cursors disappear on OS X
Hi, Has anyone else had this problem and know if anything can be done to solve it? The cursor flickers over movie sprites on the other OS's but on... -
cursors problem
I use Director MX on Windows 2000, and I created a custom cursor which I attached to a sprite with the rollover cursor behavior from the library. ... -
Are Cursors in Triggers really bad?
I'm using SQL Server 7. I've got two versions of an trigger that just keeps an audit record of when a table was updated. One uses a cursor, and... -
S. Justin Gengo #2
Re: Database cursors in .NET 2003
Kenneth,
Maybe someone from Microsoft will correct me, but I don't think it's been
implemented yet.
Sincerely,
--
S. Justin Gengo, MCP
Web Developer
Free code library at:
[url]www.aboutfortunate.com[/url]
"Out of chaos comes order."
Nietzche
"Kenneth" <kenneth.philp@chello.se> wrote in message
news:0c9701c35cd7$02d1e520$a301280a@phx.gbl...> Hi,
>
> What was lacked in .NET 2002 was a database cursor that
> did the same thing as in traditional ASP, i.e. .MoveFirst,
> MoveNext and so on.
>
> I've been reading articles and books where it's been said
> that in a future version of ADO.NET there should come
> these cursors that where you can move through a dataset
> with .MoveNext and it's alike, not having to deal with the
> index of the dataset.
>
> Has tis been implemented in .NET 2003? And if, where can I
> find it in MSDN?
>
> /Kenneth
S. Justin Gengo Guest
-
Kenneth #3
Re: Database cursors in .NET 2003
Thought so, because I can't find anything about it in MSDN.
/Kenneththink it's been>-----Original Message-----
>Kenneth,
>
>Maybe someone from Microsoft will correct me, but I don'ti.e. .MoveFirst,>implemented yet.
>
>Sincerely,
>
>--
>S. Justin Gengo, MCP
>Web Developer
>
>Free code library at:
>[url]www.aboutfortunate.com[/url]
>
>"Out of chaos comes order."
> Nietzche
>
>
>"Kenneth" <kenneth.philp@chello.se> wrote in message
>news:0c9701c35cd7$02d1e520$a301280a@phx.gbl...>> Hi,
>>
>> What was lacked in .NET 2002 was a database cursor that
>> did the same thing as in traditional ASP,said>> MoveNext and so on.
>>
>> I've been reading articles and books where it's beenthe>> that in a future version of ADO.NET there should come
>> these cursors that where you can move through a dataset
>> with .MoveNext and it's alike, not having to deal withcan I>> index of the dataset.
>>
>> Has tis been implemented in .NET 2003? And if, where>>> find it in MSDN?
>>
>> /Kenneth
>
>.
>Kenneth Guest
-
Cowboy \(Gregory A. Beamer\) #4
Re: Database cursors in .NET 2003
There is no direct correlation, but you can use a DataReader in a manner
very similar to the Recordset object. You use Read() to get a record and
then manipulate the items in it. You Read() again to advance.
--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
Author: ADO.NET and XML: ASP.NET on the Edge
************************************************** **************************
****
Think Outside the Box!
************************************************** **************************
****
"Kenneth" <kenneth.philp@chello.se> wrote in message
news:0c9701c35cd7$02d1e520$a301280a@phx.gbl...> Hi,
>
> What was lacked in .NET 2002 was a database cursor that
> did the same thing as in traditional ASP, i.e. .MoveFirst,
> MoveNext and so on.
>
> I've been reading articles and books where it's been said
> that in a future version of ADO.NET there should come
> these cursors that where you can move through a dataset
> with .MoveNext and it's alike, not having to deal with the
> index of the dataset.
>
> Has tis been implemented in .NET 2003? And if, where can I
> find it in MSDN?
>
> /Kenneth
Cowboy \(Gregory A. Beamer\) Guest



Reply With Quote

