Re: DataGrid
Posted by: Reggie Burnett
Date: January 10, 2005 12:41PM

MySqlDataAdapter da = new MySqlDataAdapter("SELECT * FROM Callers clr JOIN Calls c ON clr.ID=c.ID", SqlCONN)
DataTable dt = new DataTable()
da.Fill(dt)
myGrid.DataSource = dt

and if this is an asp.net app then do
myGrid.DataBind()

Options: ReplyQuote


Subject
Written By
Posted
January 05, 2005 02:19PM
Re: DataGrid
January 10, 2005 12:41PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.