Click here to Skip to main content
15,896,730 members
Home / Discussions / Database
   

Database

 
AnswerRe: Dynamic table in sql Procedure? Pin
John-ph23-Oct-07 22:21
John-ph23-Oct-07 22:21 
GeneralRe: Dynamic table in sql Procedure? Pin
squattyarun23-Oct-07 22:55
squattyarun23-Oct-07 22:55 
QuestionProblem in creating a SSIS package Pin
hari1723-Oct-07 18:13
hari1723-Oct-07 18:13 
QuestionCopy Bulk Data into SQL Server Pin
Mehawitchi23-Oct-07 12:44
Mehawitchi23-Oct-07 12:44 
AnswerRe: Copy Bulk Data into SQL Server Pin
Rob Graham23-Oct-07 13:48
Rob Graham23-Oct-07 13:48 
GeneralRe: Copy Bulk Data into SQL Server Pin
Mehawitchi24-Oct-07 8:22
Mehawitchi24-Oct-07 8:22 
GeneralRe: Copy Bulk Data into SQL Server Pin
PIEBALDconsult24-Oct-07 17:13
mvePIEBALDconsult24-Oct-07 17:13 
QuestionSQL Pictures Pin
RevCuevas23-Oct-07 9:34
RevCuevas23-Oct-07 9:34 
AnswerRe: SQL Pictures Pin
pmarfleet23-Oct-07 10:29
pmarfleet23-Oct-07 10:29 
QuestionGet Script Pin
mehrdadc4823-Oct-07 8:58
mehrdadc4823-Oct-07 8:58 
AnswerRe: Get Script Pin
pmarfleet23-Oct-07 9:23
pmarfleet23-Oct-07 9:23 
QuestionDTS: Transform Task > Stored Procedure > Temp Table error Pin
Bjohnson3323-Oct-07 5:52
Bjohnson3323-Oct-07 5:52 
AnswerRe: DTS: Transform Task > Stored Procedure > Temp Table error Pin
jschell23-Oct-07 9:30
jschell23-Oct-07 9:30 
GeneralRe: DTS: Transform Task > Stored Procedure > Temp Table error Pin
Bjohnson3323-Oct-07 21:19
Bjohnson3323-Oct-07 21:19 
AnswerRe: DTS: Transform Task > Stored Procedure > Temp Table error [modified] Pin
GuyThiebaut23-Oct-07 10:26
professionalGuyThiebaut23-Oct-07 10:26 
GeneralRe: DTS: Transform Task > Stored Procedure > Temp Table error Pin
Bjohnson3323-Oct-07 21:21
Bjohnson3323-Oct-07 21:21 
GeneralRe: DTS: Transform Task > Stored Procedure > Temp Table error Pin
GuyThiebaut23-Oct-07 22:35
professionalGuyThiebaut23-Oct-07 22:35 
QuestionHow to reset the identity Pin
devboycpp23-Oct-07 4:56
devboycpp23-Oct-07 4:56 
AnswerRe: How to reset the identity Pin
Pete O'Hanlon23-Oct-07 5:00
mvePete O'Hanlon23-Oct-07 5:00 
AnswerRe: How to reset the identity Pin
Mitesh Darji23-Oct-07 22:52
Mitesh Darji23-Oct-07 22:52 
QuestionUpdate Query Cant seem to spot the problem Pin
ekynox23-Oct-07 2:56
ekynox23-Oct-07 2:56 
Hi there,

Well it seems I have stumbled upon a rather basic problem and I just cant seem to work it out. I have written a simple update query as follows:

<br />
private readonly string ACCESS_CUSTOMER_UPDATE = "UPDATE Customer SET Customer.Name = @Name,Customer.Age = @Age WHERE Customer.ID = @ID";<br />


I have used the approach to execute the query in the method listed below. For the life of me I cant seem to work out why the update wont be taking place. I have executed the query listed above in Access without any problems but when encapsulated in the method below it just wont update.

I'd appreciate if someone could point out the mistake I have overlooked.

Thanks


        <br />
private string PARAM_ID = "@ID";<br />
private string PARAM_NAME = "@Name";<br />
private string PARAM_AGE = "@Age";<br />
<br />
private string connectionstring = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\\Temp\\temp.mdb";<br />
<br />
private OleDbConnection connection = new OleDbConnection(connectionstring);<br />
<br />
public void UpdateCustomer(CustomerInfo customer)<br />
{<br />
           OleDbParameter[] parameters = new OleDbParameter[]{<br />
                new OleDbParameter(PARAM_ID,OleDbType.Integer),<br />
                new OleDbParameter(PARAM_NAME,OleDbType.VarChar),<br />
                new OleDbParameter(PARAM_AGE,OleDbType.Integer)};<br />
<br />
            parameters[0].Value = customer.ID;<br />
            parameters[1].Value = customer.Name;<br />
            parameters[2].Value = customer.Age;<br />
<br />
            OleDbCommand command = new OleDbCommand();<br />
            command.Connection = this.connection;<br />
            command.Connection.Open();<br />
            command.CommandText = "UPDATE Customer SET Customer.Name = @Name,Customer.Age = @Age WHERE Customer.ID = @ID";<br />
<br />
            for (int i = 0; i < parameters.Length; i++)<br />
            {<br />
                OleDbParameter parm = (OleDbParameter)parameters[i];<br />
                command.Parameters.Add(parm);<br />
            }<br />
<br />
            try<br />
            {<br />
                int x = command.ExecuteNonQuery();<br />
                Debug.WriteLine(x.ToString());<br />
            }<br />
            catch (Exception e)<br />
            {<br />
                throw new Exception(e.Message, e.InnerException);<br />
            }<br />
            finally<br />
            {<br />
                command.Connection.Close();<br />
                command.Dispose();<br />
            }<br />
}<br />


edit:
Added the connection string.
AnswerRe: Update Query Cant seem to spot the problem Pin
squattyarun23-Oct-07 3:05
squattyarun23-Oct-07 3:05 
AnswerRe: Update Query Cant seem to spot the problem Pin
Paddy Boyd23-Oct-07 3:06
Paddy Boyd23-Oct-07 3:06 
GeneralRe: Update Query Cant seem to spot the problem Pin
ekynox23-Oct-07 3:20
ekynox23-Oct-07 3:20 
GeneralRe: Update Query Cant seem to spot the problem Pin
Paddy Boyd23-Oct-07 3:43
Paddy Boyd23-Oct-07 3:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.