OdbcConnection odbcConnection = new OdbcConnection(ConfigurationManager.AppSettings["StorisSystemDsn"]); OdbcDataAdapter odbcDataAdapter = new OdbcDataAdapter("select * from from SALES_FLASH_DAILY", odbcConnection); DataSet dataSet = new DataSet(); odbcDataAdapter.Fill(dataSet); gvRecords.DataSource = dataSet.Tables[0]; gvRecords.DataBind();
Database db = DatabaseFactory.CreateDatabase("StorisOdbc"); DbCommand dbCommand = db.GetSqlStringCommand("select * from from SALES_FLASH_DAILY"); DataSet dataSet = db.ExecuteDataSet(dbCommand); gvRecords.DataSource = dataSet.Tables[0]; gvRecords.DataBind();
Remember Me
a@href@title, b, blockquote@cite, em, i, strike, strong, sub, sup, u