No longer relevant:

In one of the comments below the OP mentions a private object DateTime() { throw new NotImplementedException(); } slipping in. It happens .


I have a DateTime field in a SqlCe database. I wish to add the time the row is created hence the need for:

DateTime now = DateTime.Now;

However this issue i am getting is that this is 'a method which is not valid in the given context'. Im guessing its something to do with it being static and im using it in a non static function perhaps ?

Just to ask in the same thread

SqlParameter Created = new SqlParameter("@Created", SqlDbType.DateTime);
**Created.Value = DateTime.Now; <--- gives error DateTime() is method which is not valid in the given context**
SqlCeCommand mySQLCommand = dbCon.CreateCommand();
mySQLCommand.CommandText = "INSERT into table (Created) VALUES (@Created)";
mySQLCommand.Parameters.Add(vetCreated);
mySQLCommand.ExecuteNonQuery(); 

Does this seem like a resonable list commands to add DateTime to the database?

link|improve this question

4  
On the first issue: Please add the context and exact error message. That line looks OK. And try 1 question / Question. No threads here. – Henk Holterman May 22 '11 at 20:31
2  
Is the connection open? and is the name of the table really table? that would usually need to be escaped to [table] – Marc Gravell May 22 '11 at 20:37
SqlParameter Created = new SqlParameter("@Created", SqlDbType.DateTime); Created.Value = DateTime.Now(); <-- This results in DateTime is a Method which is not valid in the given context. – DevilCode May 22 '11 at 21:02
1  
In your comment you say Now() which is incorrect as it is not a method, it is Now like your sample - have you mistyped your sample? – dnolan May 22 '11 at 21:05
@Devil, there is an Edit link under your question. Don't post long code in comments. – Henk Holterman May 22 '11 at 21:59
show 2 more comments
feedback

closed as too localized by Henk Holterman, Bala R, Matt Ball, Kev Jun 12 '11 at 0:07

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

2 Answers

In this line:

mySQLCommand.Parameters.Add(vetCreated);

I don't know what vetCreated is, but I suppose that it's a method judging by the error message.

You should use your parameter object Created there instead.

link|improve this answer
yes this was a typo. – DevilCode May 22 '11 at 20:48
@DevilCode: Does that mean that it's working now? – Guffa May 22 '11 at 21:13
feedback

You can simplify your code:

mySQLCommand.CommandText = "INSERT into table (Created) VALUES (@Created)";
mySQLCommand.Parameters.AddWithValue("Created", DateTime.Now);
mySQLCommand.ExecuteNonQuery(); 

I believe this will also fix your issue as it is not clear what vetCreated is in your code.

[Update]

Not sure how you handle connection and command as your code doesn't show it. Here is the full code to insert row into a table:

using (var connection = new SqlConnection("your connection string"))
using (var command = connection.CreateCommand())
{
    command.CommandText = "INSERT into table (Created) VALUES (@Created)";
    command.Parameters.AddWithValue("Created", DateTime.Now);
    connection.Open();
    command.ExecuteNonQuery();
}
link|improve this answer
Anywhere I add DateTime.Now i get 'a method which is not valid in the given context' – DevilCode May 22 '11 at 20:47
@DevilCode - what version of .NET do you use? – Alex Aza May 22 '11 at 21:04
@DevilCode - updated the answer – Alex Aza May 22 '11 at 21:13
@Alex Aza: Sorry for my slobby comment which I have removed. I would still prefer (and recommend) to use the regular Add with the .Value since it allows specifying the SqlDbType. geekswithblogs.net/Rhames/archive/2008/10/29/… – faester May 22 '11 at 21:15
@faester - this is not releavant as parameter is of datetime type – Alex Aza May 22 '11 at 21:18
show 1 more comment
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.