I have inherited an existing Access Database that has a table with a field defined as a "short string"
This database gets loaded into my projects DataTable via OleDbDataAdapter and OleDbCommandBuilder
The table in question "rs.Rows(irs).Item("ACT_FLOW") " currently has the string "25.28,0.34,23.04" that is in place at the instance when it is about to be changed
In execution of the program I update that value
But this fails in the DataAdapter Update Command with the error "Query is too Complex"
Any suggestions?
Thanks
This database gets loaded into my projects DataTable via OleDbDataAdapter and OleDbCommandBuilder
The table in question "rs.Rows(irs).Item("ACT_FLOW") " currently has the string "25.28,0.34,23.04" that is in place at the instance when it is about to be changed
In execution of the program I update that value
Code:
sGal = "25.28,0.34,23.04"
rs.Rows(irs).Item("ACT_FLOW") = sGal
Any suggestions?
Thanks