Click here to Skip to main content
15,910,980 members
Home / Discussions / Database
   

Database

 
AnswerRe: Select Column (as Parameter) from Table Pin
_AK_19-Sep-06 1:28
_AK_19-Sep-06 1:28 
AnswerRe: Select Column (as Parameter) from Table Pin
albCode19-Sep-06 5:13
albCode19-Sep-06 5:13 
GeneralRe: Select Column (as Parameter) from Table Pin
CandyMe19-Sep-06 16:23
CandyMe19-Sep-06 16:23 
AnswerRe: Select Column (as Parameter) from Table Pin
Michael Potter20-Sep-06 5:32
Michael Potter20-Sep-06 5:32 
GeneralRe: Select Column (as Parameter) from Table Pin
CandyMe20-Sep-06 17:20
CandyMe20-Sep-06 17:20 
QuestionSystem.Data.DB.ConcurrencyException Pin
kishorepv18-Sep-06 23:10
kishorepv18-Sep-06 23:10 
AnswerRe: System.Data.DB.ConcurrencyException Pin
_AK_19-Sep-06 1:32
_AK_19-Sep-06 1:32 
GeneralRe: System.Data.DB.ConcurrencyException Pin
kishorepv19-Sep-06 19:33
kishorepv19-Sep-06 19:33 
yes. but i'am able to insert new rows, but while updating that row i'am getting this problem. hre is the code

Try
msgResult = MsgBox("Do you want to update the record", MsgBoxStyle.YesNo)
If msgResult = 6 Then
dsPrd.Tables("rddefbdg").Rows(currentRow)("bdgNo") = cmbBdgNo.SelectedItem
dsPrd.Tables("rddefbdg").Rows(currentRow)("SDate") = Format(Date.Parse(dtpicker.Text), "yyyy-MM-dd")
dsPrd.Tables("rddefbdg").Rows(currentRow)("BrPtHol") = Double.Parse(txtBdgPH.Text)
dsPrd.Tables("rddefbdg").Rows(currentRow)("BrSigns") = Integer.Parse(txtSigns.Text)
dsPrd.Tables("rddefbdg").Rows(currentRow)("BrGrdStn") = Integer.Parse(txtGS.Text)
dsPrd.Tables("rddefbdg").Rows(currentRow)("BrStmMaint") = Double.Parse(txtBtrMaint.Text)
dsPrd.Tables("rddefbdg").Rows(currentRow)("BrWtrDbrs") = Double.Parse(txtWtrWay.Text)
rdProgCmdBld = New OdbcCommandBuilder(dapPrdChk)
dapPrdChk.Update(dsPrd, "rddefbdg")
dsPrd.Tables("rddefbdg").AcceptChanges()
MessageBox.Show("Record successfully updated!")
End If
Catch ex As Exception
MsgBox(ex.ToString)
End Try

thanks
kishore
GeneralRe: System.Data.DB.ConcurrencyException Pin
_AK_19-Sep-06 19:36
_AK_19-Sep-06 19:36 
GeneralRe: System.Data.DB.ConcurrencyException Pin
kishorepv19-Sep-06 21:16
kishorepv19-Sep-06 21:16 
GeneralRe: System.Data.DB.ConcurrencyException Pin
_AK_19-Sep-06 21:21
_AK_19-Sep-06 21:21 
GeneralRe: System.Data.DB.ConcurrencyException Pin
kishorepv19-Sep-06 21:30
kishorepv19-Sep-06 21:30 
GeneralRe: System.Data.DB.ConcurrencyException Pin
_AK_19-Sep-06 21:37
_AK_19-Sep-06 21:37 
GeneralRe: System.Data.DB.ConcurrencyException Pin
kishorepv19-Sep-06 23:04
kishorepv19-Sep-06 23:04 
QuestionSearch for word in SP Pin
VK-Cadec18-Sep-06 7:35
VK-Cadec18-Sep-06 7:35 
AnswerRe: Search for word in SP Pin
Scott Serl18-Sep-06 9:58
Scott Serl18-Sep-06 9:58 
QuestionWhy are my tables 'read only'? Pin
Zdenek Navratil17-Sep-06 23:57
Zdenek Navratil17-Sep-06 23:57 
AnswerRe: Why are my tables 'read only'? Pin
Colin Angus Mackay18-Sep-06 3:21
Colin Angus Mackay18-Sep-06 3:21 
GeneralRe: Why are my tables 'read only'? Pin
Zdenek Navratil18-Sep-06 4:43
Zdenek Navratil18-Sep-06 4:43 
GeneralRe: Why are my tables 'read only'? Pin
Colin Angus Mackay18-Sep-06 5:41
Colin Angus Mackay18-Sep-06 5:41 
QuestionBook on Data Modeling Pin
Geethalakshmi17-Sep-06 20:20
Geethalakshmi17-Sep-06 20:20 
NewsRe: Book on Data Modeling Pin
rajaragothaman18-Sep-06 1:56
rajaragothaman18-Sep-06 1:56 
AnswerRe: Book on Data Modeling Pin
Not Active18-Sep-06 2:31
mentorNot Active18-Sep-06 2:31 
AnswerRe: Book on Data Modeling Pin
User 171649219-Sep-06 11:51
professionalUser 171649219-Sep-06 11:51 
QuestionInsert Query for all the records in the table Pin
karthiBalu17-Sep-06 17:10
karthiBalu17-Sep-06 17:10 

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.