473,748 Members | 2,161 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Must declare the scalar variable '@FirstName'

Must declare the scalar variable '@FirstName'

ContactGridView WebForm.aspx
<aspqlDataSourc e
RunAt="server"
ID="SqlDataSour ceContact"

ConnectionStrin g="server=local host;database=W ordEngineering; Integrated
Security=SSPI;"
ProviderName="S ystem.Data.OleD b"
SelectCommand=" SELECT SequenceOrderId , FirstName, LastName,
OtherName, Company FROM Contact ORDER BY SequenceOrderId "
UpdateCommand=" UPDATE Contact SET FirstName=@Firs tName,
LastName=@LastN ame, Company=@Compan y WHERE equenceOrderId= @SequenceOrderI d"
href="mailtoequ enceOrderId=@Se quenceOrderId"> SequenceOrderId =@SequenceOrder Id"
/>

<asp:GridView
RunAt="server"
ID="GridViewCon tact"
AutoGenerateCol umns=false
AutoGenerateEdi tButton=true
DataKeyField="S equenceOrderId"
AllowPaging="tr ue"
AllowSorting="t rue"


ContactGridView Page.aspx.cs
public string DatabaseConnect ionString = "Provider=SQLOL EDB;Data
Source=localhos t;Integrated Security=SSPI;I nitial Catalog=WordEng ineering;";
SqlDataSourceCo ntact.Connectio nString = DatabaseConnect ionString;
GridViewContact .DataSourceID = SqlDataSourceCo ntact.ID;
Nov 19 '05 #1
3 7795
Take a look at your code. Do you see the string "@FirstName " anywhere?

Do you know what it is?

It's a parameter decaration. Where have you defined the parameter?

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.

"Ken Adeniji" <Ke********@dis cussions.micros oft.com> wrote in message
news:DD******** *************** ***********@mic rosoft.com...
Must declare the scalar variable '@FirstName'

ContactGridView WebForm.aspx
<aspqlDataSourc e
RunAt="server"
ID="SqlDataSour ceContact"

ConnectionStrin g="server=local host;database=W ordEngineering; Integrated
Security=SSPI;"
ProviderName="S ystem.Data.OleD b"
SelectCommand=" SELECT SequenceOrderId , FirstName, LastName,
OtherName, Company FROM Contact ORDER BY SequenceOrderId "
UpdateCommand=" UPDATE Contact SET FirstName=@Firs tName,
LastName=@LastN ame, Company=@Compan y WHERE
equenceOrderId= @SequenceOrderI d"
href="mailtoequ enceOrderId=@Se quenceOrderId"> SequenceOrderId =@SequenceOrder Id"
/>

<asp:GridView
RunAt="server"
ID="GridViewCon tact"
AutoGenerateCol umns=false
AutoGenerateEdi tButton=true
DataKeyField="S equenceOrderId"
AllowPaging="tr ue"
AllowSorting="t rue"
>


ContactGridView Page.aspx.cs
public string DatabaseConnect ionString = "Provider=SQLOL EDB;Data
Source=localhos t;Integrated Security=SSPI;I nitial
Catalog=WordEng ineering;";
SqlDataSourceCo ntact.Connectio nString = DatabaseConnect ionString;
GridViewContact .DataSourceID = SqlDataSourceCo ntact.ID;

Nov 19 '05 #2
Must declare the scalar variable '@FirstName' occurs when the user concludes
the edit mode by clicking the update button.

In the past, efforts to define the parameter have been unsuccessful, but
could you please share a working sample code example.

Thank you.

"Kevin Spencer" wrote:
Take a look at your code. Do you see the string "@FirstName " anywhere?

Do you know what it is?

It's a parameter decaration. Where have you defined the parameter?

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.

"Ken Adeniji" <Ke********@dis cussions.micros oft.com> wrote in message
news:DD******** *************** ***********@mic rosoft.com...
Must declare the scalar variable '@FirstName'

ContactGridView WebForm.aspx
<aspqlDataSourc e
RunAt="server"
ID="SqlDataSour ceContact"

ConnectionStrin g="server=local host;database=W ordEngineering; Integrated
Security=SSPI;"
ProviderName="S ystem.Data.OleD b"
SelectCommand=" SELECT SequenceOrderId , FirstName, LastName,
OtherName, Company FROM Contact ORDER BY SequenceOrderId "
UpdateCommand=" UPDATE Contact SET FirstName=@Firs tName,
LastName=@LastN ame, Company=@Compan y WHERE
equenceOrderId= @SequenceOrderI d"
href="mailtoequ enceOrderId=@Se quenceOrderId"> SequenceOrderId =@SequenceOrder Id"
/>

<asp:GridView
RunAt="server"
ID="GridViewCon tact"
AutoGenerateCol umns=false
AutoGenerateEdi tButton=true
DataKeyField="S equenceOrderId"
AllowPaging="tr ue"
AllowSorting="t rue"
>


ContactGridView Page.aspx.cs
public string DatabaseConnect ionString = "Provider=SQLOL EDB;Data
Source=localhos t;Integrated Security=SSPI;I nitial
Catalog=WordEng ineering;";
SqlDataSourceCo ntact.Connectio nString = DatabaseConnect ionString;
GridViewContact .DataSourceID = SqlDataSourceCo ntact.ID;


Nov 19 '05 #3
No problemo. But you must promise to read the WHOLE thing! ;-)

http://msdn.microsoft.com/library/de...eterstopic.asp

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.

"Ken Adeniji" <Ke********@dis cussions.micros oft.com> wrote in message
news:B9******** *************** ***********@mic rosoft.com...
Must declare the scalar variable '@FirstName' occurs when the user
concludes
the edit mode by clicking the update button.

In the past, efforts to define the parameter have been unsuccessful, but
could you please share a working sample code example.

Thank you.

"Kevin Spencer" wrote:
Take a look at your code. Do you see the string "@FirstName " anywhere?

Do you know what it is?

It's a parameter decaration. Where have you defined the parameter?

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.

"Ken Adeniji" <Ke********@dis cussions.micros oft.com> wrote in message
news:DD******** *************** ***********@mic rosoft.com...
> Must declare the scalar variable '@FirstName'
>
> ContactGridView WebForm.aspx
> <aspqlDataSourc e
> RunAt="server"
> ID="SqlDataSour ceContact"
>
> ConnectionStrin g="server=local host;database=W ordEngineering; Integrated
> Security=SSPI;"
> ProviderName="S ystem.Data.OleD b"
> SelectCommand=" SELECT SequenceOrderId , FirstName, LastName,
> OtherName, Company FROM Contact ORDER BY SequenceOrderId "
> UpdateCommand=" UPDATE Contact SET FirstName=@Firs tName,
> LastName=@LastN ame, Company=@Compan y WHERE
> equenceOrderId= @SequenceOrderI d"
> href="mailtoequ enceOrderId=@Se quenceOrderId"> SequenceOrderId =@SequenceOrder Id"
> />
>
> <asp:GridView
> RunAt="server"
> ID="GridViewCon tact"
> AutoGenerateCol umns=false
> AutoGenerateEdi tButton=true
> DataKeyField="S equenceOrderId"
> AllowPaging="tr ue"
> AllowSorting="t rue"
> >
>
> ContactGridView Page.aspx.cs
> public string DatabaseConnect ionString = "Provider=SQLOL EDB;Data
> Source=localhos t;Integrated Security=SSPI;I nitial
> Catalog=WordEng ineering;";
> SqlDataSourceCo ntact.Connectio nString = DatabaseConnect ionString;
> GridViewContact .DataSourceID = SqlDataSourceCo ntact.ID;


Nov 19 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
8238
by: Wajih-ur-Rehman | last post by:
I am using the following query: query = "insert into SystemEventsProperties (ID,PName,PValue) values (@id,@pName,@pValue)"; OdbcParameter param1 = new OdbcParameter(); param1.DbType = DbType.Int32; param1.ParameterName = "@id"; param1.Value = maxId;
2
3148
by: Boris Zakharin | last post by:
I have the following code upon which I receive the error "Must declare the variable '@job_id'". --Begin Code -- OleDbConnection conDetail = new OleDbConnection("Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=ACRPPhilly;Data Source=COMPUSA\\VSdotNET;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Workstation ID=COMPUSA;Use Encryption for
2
6698
by: Oded Dror | last post by:
Hi there, Please take a look at the source code and tell me whats wrong? Imports System.Data Imports System.Data.SqlClient Partial Class Test Inherits System.Web.UI.Page Const conString As String = "Data Source=.;Initial Catalog=Northwind;Integrated Security=True"
1
7247
by: AndrewD | last post by:
when the following SELECT is executed via A cursor to SQL 2005 it works SELECT * FROM LCTRY WHERE LANGUAGE = 'EN' AND CTRY_CODE = :CTRY BUT SELECT * FROM LCTRY WHERE CTRY_CODE = :CTRY AND LANGUAGE = 'EN'
1
1820
by: Rama Jayapal | last post by:
the following is my code can anybody rectify my problem that i get when running my application "Must declare scalar variable @ID" <asp:GridView ID="GridView1" DataKeyNames="ID" runat="server" AutoGenerateColumns="False" BackImageUrl="~/App_Themes/SkinFile/back1.jpg" BorderColor="Teal" BorderStyle="Solid" DataSourceID="SqlDataSource1"> <Columns> <asp:CommandField...
1
2874
by: adz1809 | last post by:
I'm having a problem with updating a record through a form. Here is the error: Server Error in '/AccoEndUser' Application. -------------------------------------------------------------------------------- Must declare the variable '@Title'. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
1
2987
by: Mark | last post by:
I am really struggling with this, trying to understand why it doesn't work. I've simplified the code down to the essentials. The GridView displays in ReadOnly mode just fine, Clicking the "edit" button in the gridview works just fine, but clicking the "Delete" button gives the error "Must Declare Scalar Variable @ServerName" yet the code in the UpdateCommand and DeleteCommand are essentially the same! I must be missing something basic...
3
1973
by: krisssgopi | last post by:
Hi Team, Thanks for your effort. When am trying to execute below code it was throwing an exception must declare the variable @uname. Please trigger me where it was going wrong. thanks in advance. <Try con.Open() param = New SqlParameter() param.ParameterName = "@uname" param.Value = TextBox1.Text cmd.CommandType = CommandType.Text cmd.CommandText = "select * from...
5
1954
by: krisssgopi | last post by:
Hi all, When i run the below code it was throwing an exception must declare the variable @uname. please help me to solve this issue. Try con.Open() Dim param As New SqlParameter() param.ParameterName = "@uname" param.Value = TextBox1.Text cmd = New SqlCommand("select * from customer where custname=@uname", con)
0
8983
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9528
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9359
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9236
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6072
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4592
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4863
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3298
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2206
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.