Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 2.0 > ASP.NET 2.0 Basics
|
ASP.NET 2.0 Basics If you are new to ASP or ASP.NET programming with version 2.0, this is the forum to begin asking questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 14th, 2006, 05:38 PM
Registered User
 
Join Date: Aug 2006
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default runtime sqldatasource sql commands- HELP

I need to dynamically generate my SQL commands so to do that i am generating sqldatasource commands programmatically rather declaratively. Here is my code:



Code:
SqlDataSource sdsConsultant = new SqlDataSource(); 

protected void Page_Load(object sender, EventArgs e) 
{


if (!IsPostBack) 
{

loadDataSet();  //it just loads dataset used by formview

initializeSDS(); 

}



}


protected void initializeSDS() 
{


string strConnection = ConfigurationManager.ConnectionStrings["myDB"].ToString(); 
sdsConsultant.ConnectionString = strConnection;



//SELECT 
sdsConsultant.SelectCommand =
"SELECT * FROM Consultants WHERE (id=@id)"; 

QueryStringParameter id = new QueryStringParameter("id", "id"); 
sdsConsultant.SelectParameters.Add(id);



//DELETE 
sdsConsultant.DeleteCommand = 

"DELETE * FROM Consultants WHERE (id=@id2)"; 

QueryStringParameter id2 = new QueryStringParameter("id2", "id"); 
sdsConsultant.DeleteParameters.Add(id2); 



//UPDATE 
Page.Controls.Add(sdsConsultant);

FormView1.DataSource = sdsConsultant; 

FormView1.DataBind();

}

my formview control looks like:

Code:
<asp:FormView DefaultMode="Edit" ID="FormView1" runat="server" DataKeyNames="id" 

OnItemDeleted="FormView1_ItemDeleted" 

OnItemDeleting="FormView1_ItemDeleting">


the DELETE doesnt execute and the OnItemDeleted event doesnt do anything either. am i doing something wrong here? plz help





Similar Threads
Thread Thread Starter Forum Replies Last Post
sql commands dr BOOK: Beginning Ruby on Rails 1 April 27th, 2007 12:22 PM
using sql commands C# N4th SQL Server 2000 0 December 15th, 2006 02:04 PM
How to exeucte a file containing sql commands Hari_Word VB How-To 2 September 30th, 2004 06:00 AM
Dynamically Changing SQL Commands? avantjer BOOK: Professional Crystal Reports for VS.NET 2 May 18th, 2004 11:29 PM
Using 2 SQL commands attipa Classic ASP Databases 2 September 20th, 2003 05:23 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.