Wrox Programmer Forums
Go Back   Wrox Programmer Forums > .NET > .NET 2.0 and Visual Studio. 2005 > .NET Framework 2.0
|
.NET Framework 2.0 For discussion of the Microsoft .NET Framework 2.0.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the .NET Framework 2.0 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 March 10th, 2011, 04:54 PM
Registered User
 
Join Date: Mar 2011
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Post Problem with SQL table read and write

I would like help with using ADO connection to read records from SQL table, make cahnges to just user name column and reinsert record as new using stored procedures. Here is a sample code:

sqlConnention rCon = new sqlconnection ("UID......);
rCon.Open();
strSQL = "Select statement"
SqlCommand cmd = new SqlCommand(strlSQL, rCon);
SqlDataReader reader = null;
Sql Connection writeCon = new SqlConnection( "UID+....).

SqlCommand oCom
SqlParameter oParameter
str2SQL = "AddNew ";
oCom = new SqlCommand(str2SQL, writeCon);
oCom.CommandType = CommandType.StoredProcedure;
reader = cmd.ExecuteReader();
while (reader.Read())
{
areaname.Text = reader["name"].ToString();
oCom.Parameter.Add("@name", SqlDbType.VarChar, 25).Value = newname.Text;
oCom.Parameter.Add("areaname", SqlDbType.Varchar, 6).Value =areaname.Text;
}
try
{
if (Connection.Sate == Connection.Closed)
{
writeCon.Open();
}
oCom.ExecuteNonQuery
}
Catch(Exception, myExp)
{
throw myExp;
}
}

I cannot get any record to write. Help.
 
Old March 11th, 2011, 05:56 AM
Imar's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 17,089
Thanks: 80
Thanked 1,576 Times in 1,552 Posts
Default

Hi there,

I think you're better off posting your real code. This code doesn't even compile, making it hard for us to see what the problem could be.

Cheers,

Imar
__________________
Imar Spaanjaars
http://Imar.Spaanjaars.Com
Follow me on Twitter

Author of Beginning ASP.NET 4.5 : in C# and VB, Beginning ASP.NET Web Pages with WebMatrix
and Beginning ASP.NET 4 : in C# and VB.
Did this post help you? Click the button below this post to show your appreciation!





Similar Threads
Thread Thread Starter Forum Replies Last Post
Direct I/O read/write pakman VB.NET 2002/2003 Basics 1 September 13th, 2006 03:27 PM
How do I write out a record to an SQL db table? furjaw Visual Basic 2005 Basics 1 April 26th, 2006 05:16 PM
a problem about read and write the xml files watson .NET Web Services 0 September 5th, 2004 09:25 PM
a problem about read and write the xml files watson C# 0 September 4th, 2004 10:33 AM
magnetic stripe read/write frankv25 Pro VB.NET 2002/2003 1 April 16th, 2004 03:44 PM





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