Home
|
Weblogs
|
Forums
|
SQL Server Links
Search:
Active Forum Topics
|
Popular Articles
|
All Articles by Tag
|
SQL Server Books
|
About
SQL Server Forums
Profile
|
Register
|
Active Topics
|
Members
|
Search
|
Forum FAQ
Register Now
and get your question answered!
Username:
Password:
Save Password
Forgot your Password?
All Forums
General SQL Server Forums
New to SQL Server Programming
What is wrong with this update statement :S
New Topic
Reply to Topic
Printer Friendly
Author
Topic
Lenjaku
Starting Member
13 Posts
Posted - 07/18/2012 : 14:01:03
cmd.CommandText = "UPDATE Users SET User_email=" + mail_textbox.Text + " WHERE User_ID = " + usr.User_ID;
It gives me an error saying I give it an invalid column and gives the usr.User_ID's value >.<
jleitao
Yak Posting Veteran
Portugal
52 Posts
Posted - 07/18/2012 : 14:07:24
d.CommandText = "UPDATE Users SET User_email='" + mail_textbox.Text + "' WHERE User_ID = " + usr.User_ID;
Lenjaku
Starting Member
13 Posts
Posted - 07/18/2012 : 14:15:51
It still says the column name is invalid :(
Lenjaku
Starting Member
13 Posts
Posted - 07/18/2012 : 14:37:59
I dunno but User_ID is the primary key (is identity) does it have anything to do with it?
Lenjaku
Starting Member
13 Posts
Posted - 07/18/2012 : 15:00:56
cmd.CommandText = "UPDATE Users SET User_email = '" + mail_textbox.Text + "' WHERE User_ID = '" + usr.User_ID+"'"
Did the trick :)
Thanks for the suggestion, I just had to cover the User_ID with ' as well.
:)
Lenjaku
Starting Member
13 Posts
Posted - 07/18/2012 : 15:02:47
Ok it still does it.
Seems it doesn;t like the value....
I try to enter
admin@gmail.com
Maybe it doesn;t like @ or gmail or admin@ :S
Lenjaku
Starting Member
13 Posts
Posted - 07/18/2012 : 15:09:27
Oops didn;t mean to post a link.
Anyway it DOES work sorry for spamming ._.;
There was another part I had to add it.
I had such queries on other pages with the ' mark and they seem to work fine :S
Maybe I had it and didn;t notice.
And numbers don;t need it?
I know I didn;t add ' when I was dealing with numeric ids.
Topic
New Topic
Reply to Topic
Printer Friendly
Jump To:
Select Forum
General SQL Server Forums
New to SQL Server Programming
New to SQL Server Administration
Script Library
Data Corruption Issues
Database Design and Application Architecture
SQL Server 2012 Forums
Transact-SQL (2012)
SQL Server Administration (2012)
SSIS and Import/Export (2012)
Analysis Server and Reporting Services (2012)
Replication (2012)
Availability Groups and DR (2012)
Other SQL Server 2012 Topics
SQL Server 2008 Forums
Transact-SQL (2008)
SQL Server Administration (2008)
SSIS and Import/Export (2008)
High Availability (2008)
Replication (2008)
Analysis Server and Reporting Services (2008)
Other SQL Server 2008 Topics
SQL Server 2005 Forums
Transact-SQL (2005)
SQL Server Administration (2005)
.NET Inside SQL Server (2005)
SSIS and Import/Export (2005)
Service Broker (2005)
Replication (2005)
High Availability (2005)
Analysis Server and Reporting Services (2005)
Express Edition and Compact Edition (2005)
Other SQL Server Topics (2005)
SQL Server 2000 Forums
SQL Server Development (2000)
SQL Server Administration (2000)
Import/Export (DTS) and Replication (2000)
Transact-SQL (2000)
Analysis Services (2000)
MSDE (2000)
Development Tools
ASP.NET
Reporting Services Development
Other Development Tools
Site Related Forums
Site Related Discussions
Article Discussion
Poll Discussion
The Yak Corral
Other Forums
SQL Server 6.5 \ SQL Server 7.0
Other Topics
MS Access
ClearTrace Support Forum
Old Forums
CLOSED - General SQL Server
CLOSED - SQL Server 2005/Yukon
--------------------
Home
Active Topics
Frequently Asked Questions
Member Information
Search Page
SQL Server Forums
© 2000-2009 SQLTeam Publishing, LLC
This page was generated in 0.05 seconds.