Click here to Skip to main content
16,005,149 members
Home / Discussions / Database
   

Database

 
GeneralRe: Creating a running totals column Pin
nicholas.gionfriddo5-Mar-03 10:52
nicholas.gionfriddo5-Mar-03 10:52 
GeneralRe: Creating a running totals column Pin
andyharman5-Mar-03 11:42
professionalandyharman5-Mar-03 11:42 
GeneralRe: Creating a running totals column Pin
nicholas.gionfriddo6-Mar-03 2:57
nicholas.gionfriddo6-Mar-03 2:57 
GeneralConnection Pooling with Oracle OleDb Provider Pin
Dr Herbie4-Mar-03 5:16
Dr Herbie4-Mar-03 5:16 
GeneralRe: Connection Pooling with Oracle OleDb Provider Pin
Mark Conger4-Mar-03 6:51
Mark Conger4-Mar-03 6:51 
GeneralSQLServer/MSDE Authentication Pin
Sassan Komeili Zadeh3-Mar-03 20:17
Sassan Komeili Zadeh3-Mar-03 20:17 
GeneralDeleting Rows From DataSet Pin
afronaut2-Mar-03 16:40
afronaut2-Mar-03 16:40 
GeneralRe: Deleting Rows From DataSet Pin
mughal2-Mar-03 20:19
mughal2-Mar-03 20:19 
Laugh | :laugh:
DataView is handy in problem as above where we need current records count.
set dataview RowStateFilter property to as shown below to view only rows which are not deleted from table. All rows which have deleted status in underlying table will not visible.



DataView t=new DataView(someTable);<br />
t.RowStateFilter=DataViewRowState.CurrentRows;<br />
		<br />
debug.WriteLine("Rows Count before deletion= "+ t.Count);<br />
t[0].Delete();<br />
debug.WriteLine("Rows Count after deletion = "+ t.Count);


this might help...........................
GeneralRe: Deleting Rows From DataSet Pin
afronaut3-Mar-03 4:42
afronaut3-Mar-03 4:42 
QuestionADO.NET and Relational Data problem.....how start? Pin
gicio2-Mar-03 10:05
gicio2-Mar-03 10:05 
AnswerRe: ADO.NET and Relational Data problem.....how start? Pin
Bernard Vander Beken5-Mar-03 9:46
Bernard Vander Beken5-Mar-03 9:46 
Generalfetching backward Pin
Hesham Amin1-Mar-03 3:42
Hesham Amin1-Mar-03 3:42 
GeneralRe: fetching backward Pin
karl_w1-Mar-03 4:19
karl_w1-Mar-03 4:19 
GeneralRe: fetching backward Pin
Hesham Amin1-Mar-03 5:07
Hesham Amin1-Mar-03 5:07 
GeneralRe: fetching backward Pin
andyharman1-Mar-03 23:31
professionalandyharman1-Mar-03 23:31 
GeneralRe: fetching backward Pin
Hesham Amin2-Mar-03 11:00
Hesham Amin2-Mar-03 11:00 
GeneralRandomize SQL Result set Pin
John M. Drescher28-Feb-03 10:10
John M. Drescher28-Feb-03 10:10 
GeneralRe: Randomize SQL Result set Pin
leppie1-Mar-03 0:06
leppie1-Mar-03 0:06 
GeneralRe: Randomize SQL Result set Pin
John M. Drescher1-Mar-03 4:45
John M. Drescher1-Mar-03 4:45 
GeneralRe: Randomize SQL Result set Pin
andyharman2-Mar-03 23:59
professionalandyharman2-Mar-03 23:59 
GeneralRe: Randomize SQL Result set Pin
John M. Drescher1-Mar-03 4:52
John M. Drescher1-Mar-03 4:52 
GeneralRe: Randomize SQL Result set Pin
leppie1-Mar-03 6:29
leppie1-Mar-03 6:29 
GeneralRe: Randomize SQL Result set Pin
John M. Drescher1-Mar-03 6:40
John M. Drescher1-Mar-03 6:40 
GeneralRe: Randomize SQL Result set Pin
Paul Riley1-Mar-03 7:49
Paul Riley1-Mar-03 7:49 
GeneralRe: Randomize SQL Result set Pin
Jon Hulatt2-Mar-03 23:47
Jon Hulatt2-Mar-03 23:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.