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)
??
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)
??