OleDbSchemaGuid.Views, rewrite the view?

  • Thread starter Thread starter Edwin Knoppert
  • Start date Start date
E

Edwin Knoppert

I finally managed me a datatable with the queries.

DataTable views = oConn.GetOleDbSchemaTable(OleDbSchemaGuid.Views, new
object[] { null, null, null });
this.GridView1.DataSource = views;
this.GridView1.DataBind();

Is there a way i can update the VIEW_DEFINITION field in a single row (= 1
query)

??
 
It seems i can rewrite the contents but i need to write to the DB which
fails.
(It is not stored permanent)
 
Not solved yet ..

(grrr)

Edwin Knoppert said:
It seems i can rewrite the contents but i need to write to the DB which
fails.
(It is not stored permanent)


Edwin Knoppert said:
I finally managed me a datatable with the queries.

DataTable views = oConn.GetOleDbSchemaTable(OleDbSchemaGuid.Views, new
object[] { null, null, null });
this.GridView1.DataSource = views;
this.GridView1.DataBind();

Is there a way i can update the VIEW_DEFINITION field in a single row (=
1 query)

??
 
Back
Top