Click here to Skip to main content
15,902,112 members
Home / Discussions / Database
   

Database

 
GeneralRe: Create index using ADO.NET??? Pin
Paul Conrad2-Mar-06 5:35
professionalPaul Conrad2-Mar-06 5:35 
QuestionSQL Profiler results question Pin
theJazzyBrain28-Feb-06 23:19
theJazzyBrain28-Feb-06 23:19 
QuestionArithmetic overflow error converting expression to data type int. Pin
japel28-Feb-06 13:39
japel28-Feb-06 13:39 
AnswerRe: Arithmetic overflow error converting expression to data type int. Pin
WoutL1-Mar-06 0:37
WoutL1-Mar-06 0:37 
GeneralRe: Arithmetic overflow error converting expression to data type int. Pin
Le centriste1-Mar-06 1:53
Le centriste1-Mar-06 1:53 
AnswerRe: Arithmetic overflow error converting expression to data type int. Pin
japel1-Mar-06 12:39
japel1-Mar-06 12:39 
Questionnewbie SQL question Pin
Mundo Cani28-Feb-06 10:57
Mundo Cani28-Feb-06 10:57 
AnswerRe: newbie SQL question Pin
Al Ortega28-Feb-06 11:14
Al Ortega28-Feb-06 11:14 
AnswerRe: newbie SQL question Pin
Colin Angus Mackay1-Mar-06 1:25
Colin Angus Mackay1-Mar-06 1:25 
GeneralRe: newbie SQL question Pin
Paul Conrad1-Mar-06 16:44
professionalPaul Conrad1-Mar-06 16:44 
QuestionExamples of creating multirecord databound controls for *WinForms* Pin
Rabb Moshe Plotkin28-Feb-06 5:33
Rabb Moshe Plotkin28-Feb-06 5:33 
QuestionFIFO financial analysis proc - any ideas? Pin
Duncan Edwards Jones28-Feb-06 2:27
professionalDuncan Edwards Jones28-Feb-06 2:27 
AnswerRe: FIFO financial analysis proc - any ideas? Pin
Chris Meech28-Feb-06 3:11
Chris Meech28-Feb-06 3:11 
QuestionErrors connecting to database Pin
Deffiant27-Feb-06 22:40
Deffiant27-Feb-06 22:40 
QuestionInserting Images Pin
monrobot1327-Feb-06 22:08
monrobot1327-Feb-06 22:08 
AnswerRe: Inserting Images Pin
minkinin27-Feb-06 23:49
minkinin27-Feb-06 23:49 
Questionhelp with connecting to database server Pin
cpence2527-Feb-06 19:39
cpence2527-Feb-06 19:39 
AnswerRe: help with connecting to database server Pin
Mike Dimmick28-Feb-06 6:28
Mike Dimmick28-Feb-06 6:28 
GeneralRe: help with connecting to database server Pin
cpence2528-Feb-06 13:03
cpence2528-Feb-06 13:03 
QuestionHow to insert records into two tables using single Query Pin
Rajkamal_dfine27-Feb-06 18:53
Rajkamal_dfine27-Feb-06 18:53 
AnswerRe: How to insert records into two tables using single Query Pin
Andy Brummer27-Feb-06 19:02
sitebuilderAndy Brummer27-Feb-06 19:02 
Questionrow.Insert(x) isn't updating my table. Pin
3197527-Feb-06 10:56
3197527-Feb-06 10:56 
I am trying to edit an exisiting row in an existing table. I know I have the row as I can output to debug window values and column (field) names. When I then try and loop thru my rows and update a specific column, the code runs fine but the edits never get into my table/dataset.

Row.State returns "2".


The table is simply a SQLServre table I created with Enterprise Manager.
I am just trying to update some rows (ints and strings) from a sub in vb.Net.

either I am accessing the table in a read only manner or I am missing the function to make the "comit" happen. Any help would be appreciated.


If you need to look at the code, it is below...




Private Sub playwithSql()

Dim sqlConn As New SqlConnection(sConnection) <----This is cool...
Dim mysqlCommand As New SqlCommand

mysqlCommand.Connection = sqlConn
mysqlCommand.CommandType = CommandType.Text
mysqlCommand.CommandText = "SELECT * FROM TestTable"




Dim dsTxA As New DataSet

Dim dataAdapter As New SqlDataAdapter
dataAdapter.SelectCommand = mysqlCommand
dataAdapter.Fill(dsTxA)


Dim table As DataTable
table = dsTxA.Tables(0)

Dim col As DataColumn

For Each col In table.Columns
Debug.WriteLine(col.ColumnName)
Next col

Dim myrow As DataRow

For Each myrow In table.Rows

myrow.BeginEdit()
'' myrow.Item(2) = Date.Now
myrow.Item(1) = "data"

MessageBox.Show(myrow.RowState)

myrow.EndEdit()
'' myrow.AcceptChanges()

Next



''dataAdapter.Update(dsTVA)
''sqlConn.Close()

Debug.WriteLine("-----------------------------------------------------------")


End Sub

***DETAILS
sqlSrv2000
DotNet 1.1 (VB.NET)
AnswerRe: row.Insert(x) isn't updating my table. Pin
Ritesh123427-Feb-06 19:53
Ritesh123427-Feb-06 19:53 
AnswerRe: row.Insert(x) isn't updating my table. Pin
3197515-Mar-06 10:34
3197515-Mar-06 10:34 
QuestionExecute an SQL command with return value Pin
stephanm@cae.ca27-Feb-06 8:33
stephanm@cae.ca27-Feb-06 8:33 

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.