Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
410
how to save the values from ultrawinGrid
posted

hi  i need to enter the details in ultragridview and i need to save the the details into database

 

Parents
No Data
Reply
  • 69832
    Verified Answer
    Offline posted

    The typical approach to connecting a grid and a database is to bind to grid to a System.Data.DataSet (assign a reference to the DataSet to the grid's DataSource property), and use a database-specific adapter (e.g., the System.Data.OleDb.OleDbDataAdapter class) to handle the transfer of data to and from the database and DataSet.

    There are many articles on MSDN on the subject of retrieving and saving data to and from a database, for example this one here.

Children