How I will insert data from Datagridview with hide column into database?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ashik478
    New Member
    • Apr 2007
    • 3

    How I will insert data from Datagridview with hide column into database?

    Hi! I have a problem. I have a table in oracle database with one field is primary key. Now I want to insert data from Datagridview with hide column which contain not null field(this field is autogenerated).

    Pls anyone help me.
    Thanks
  • twigboy
    New Member
    • Mar 2007
    • 12

    #2
    I did something like this using C#

    (cast)datagridv iew.currentrow. cells[i].value;

    i is the cell you want to get the value of in the currently selected row.

    Comment

    Working...