Click here to Skip to main content
15,899,313 members
Home / Discussions / Database
   

Database

 
Questionavg (sqlite) Pin
jashimu13-Jan-10 3:39
jashimu13-Jan-10 3:39 
AnswerRe: avg (sqlite) Pin
James Shao13-Jan-10 4:36
James Shao13-Jan-10 4:36 
GeneralRe: avg (sqlite) [modified] Pin
jashimu13-Jan-10 5:00
jashimu13-Jan-10 5:00 
AnswerRe: avg (sqlite) Pin
loyal ginger13-Jan-10 5:44
loyal ginger13-Jan-10 5:44 
AnswerRe: avg (sqlite) Pin
Niladri_Biswas14-Jan-10 16:49
Niladri_Biswas14-Jan-10 16:49 
QuestionMS SQL Server 2005 UDF only returns first character from a string value Pin
Steven J Jowett13-Jan-10 1:40
Steven J Jowett13-Jan-10 1:40 
AnswerRe: MS SQL Server 2005 UDF only returns first character from a string value Pin
Covean13-Jan-10 1:44
Covean13-Jan-10 1:44 
AnswerRe: MS SQL Server 2005 UDF only returns first character from a string value Pin
J4amieC13-Jan-10 2:17
J4amieC13-Jan-10 2:17 
GeneralRe: MS SQL Server 2005 UDF only returns first character from a string value Pin
Steven J Jowett13-Jan-10 4:25
Steven J Jowett13-Jan-10 4:25 
GeneralRe: MS SQL Server 2005 UDF only returns first character from a string value Pin
Ashfield13-Jan-10 5:15
Ashfield13-Jan-10 5:15 
GeneralRe: MS SQL Server 2005 UDF only returns first character from a string value Pin
Steven J Jowett13-Jan-10 5:21
Steven J Jowett13-Jan-10 5:21 
GeneralRe: MS SQL Server 2005 UDF only returns first character from a string value Pin
Ashfield13-Jan-10 8:36
Ashfield13-Jan-10 8:36 
Questionupdate Query with Order by Clause- SQL Server2008 Pin
Paramu197311-Jan-10 22:51
Paramu197311-Jan-10 22:51 
AnswerRe: update Query with Order by Clause- SQL Server2008 Pin
Mycroft Holmes11-Jan-10 23:21
professionalMycroft Holmes11-Jan-10 23:21 
GeneralRe: update Query with Order by Clause- SQL Server2008 Pin
i.j.russell12-Jan-10 3:54
i.j.russell12-Jan-10 3:54 
AnswerRe: update Query with Order by Clause- SQL Server2008 Pin
i.j.russell12-Jan-10 3:57
i.j.russell12-Jan-10 3:57 
AnswerRe: update Query with Order by Clause- SQL Server2008 [modified] Pin
loyal ginger12-Jan-10 4:06
loyal ginger12-Jan-10 4:06 
AnswerRe: update Query with Order by Clause- SQL Server2008 Pin
Corporal Agarn12-Jan-10 5:10
professionalCorporal Agarn12-Jan-10 5:10 
GeneralRe: update Query with Order by Clause- SQL Server2008 Pin
i.j.russell12-Jan-10 5:15
i.j.russell12-Jan-10 5:15 
QuestionGetting underlying table-column value from a selected DataGridRow [Solved] Pin
AussieLew11-Jan-10 18:07
AussieLew11-Jan-10 18:07 
AnswerRe: Getting underlying table-column value from a selected DataGridRow Pin
Mycroft Holmes11-Jan-10 18:40
professionalMycroft Holmes11-Jan-10 18:40 
GeneralRe: Getting underlying table-column value from a selected DataGridRow Pin
AussieLew11-Jan-10 21:27
AussieLew11-Jan-10 21:27 
Thanks for your reply!

To expand a bit further...
I have set up the DGV so that no edits , updates etc can be done in the DGV.
So the whole DGV is ReadOnly.

I am providing the edit/add fields ( as databound textboxes etc )separately elsewhere on the form.
These normally display a bit more info than the DGV itself, and are all ReadOnly unless an Edit button (or row double click - yet to be done) is clicked.

If the Boolean flag (as you said,in a hidden column) allows edits, I change all the appropriate TextBox.ReadOnly values to allow changes there.
(There are some rows that I don't want the user ever to edit or delete)

(1)So, if it is considered to be best practice to get the column value from the table itself rather than the DGV , I need to get the row index of the table that matches the current row in the DGV.
(2) Also being able to use MyDataSet.MyTable1[pos].HTReadOnly ) syntax allow for error checking in the IDE in case of wrong column name or wrong type etc

Otherwise I can get the DGV row/column value from ( off the top of my head) with
DataGridViewRow dgvr = table1DataGridView.CurrentRow;
DataRowView drv = (DataRowView )dgvr.DataBoundItem;
bool isReadOnly = drv.Row["htreadonly"];


By using drv.Row["htreadonly"]; am I in fact looking directly at the data?
If so it leaves only point (2) which I think is significant instead of coding (as at present) to catch runtime errors.


Hope this serves to clarify, not confuse....

LJL
GeneralRe: Getting underlying table-column value from a selected DataGridRow Pin
Mycroft Holmes11-Jan-10 22:12
professionalMycroft Holmes11-Jan-10 22:12 
GeneralRe: Getting underlying table-column value from a selected DataGridRow Pin
AussieLew12-Jan-10 0:46
AussieLew12-Jan-10 0:46 
GeneralRe: Getting underlying table-column value from a selected DataGridRow Pin
Mycroft Holmes12-Jan-10 14:00
professionalMycroft Holmes12-Jan-10 14:00 

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.