Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8399563
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T21:20:33+00:00 2026-06-09T21:20:33+00:00

I have a C# DateTime class and wanted to know how I need to

  • 0

I have a C# DateTime class and wanted to know how I need to format it in a SQL Server CE query to insert it into the database, I was hoping to have both the date and time inserted in. Currently when I try variations thereof I get invalid format exceptions.

Current format I’m using is: dd/MM/yyyy, was hoping to do something like dd/MM/yyyy hh:mm:ss.

The way I’m trying to do the insert is like so:

 ( ( DateTime )_Value ).ToString( "dd/MM/yyyy hh:mm:ss" )

Obviously hh:mm:ss isn’t working, if that isn’t there dd/MM/yyyy executes successfully in the query.

I’ve tried a few formats including what I’ve found on google but none have worked so far…

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T21:20:34+00:00Added an answer on June 9, 2026 at 9:20 pm

    If you’re worried about getting the format right at all, something has already gone seriously wrong. There are two things you need to do to correctly work with datetime values in any database, not just sqlce:

    1. Make sure you’re using a datetime type for the column (not a text type like varchar)
    2. Make sure you’re using a datetime parameter in a parameterized query, and not string concatenation.

    If you do that, there is no formatting involved on your part. At all. Example:

     void SetDate(int recordID, DateTime timeStamp)
     {
        string SQL = "UPDATE [sometable] SET someDateTimeColumn= @NewTime WHERE ID= @ID";
    
        using (var cn = new SqlCeConnection("connection string here"))
        using (var cmd = new SqlCeCommand(SQL, cn))
        {
            cmd.Parameters.Add("@NewTime", SqlDbType.DateTime).Value = timeStamp;
            cmd.Parameters.Add("@ID", SqlDbType.Integer).Value = recordID;
    
            cn.Open();
            cmd.ExecuteNonQuery();
        }
    } 
    

    Never ever ever ever EVER use string manipulation to substitute values into sql queries. It’s a huge no-no.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a DateTime field in SQL Server for some products expiration (ExpirationDate). I
I have a DateTime class and wish to display it according to some format...
I have a model with a datetime field: class MyModel(models.Model): created = models.DateTimeField(auto_now =
I have a model Coupon with an attribute expired_at , of class DateTime and
Let's say I have an object: public class CustomObj { DateTime Date { get;
I have a serial of object defined as: public class Foo { public DateTime
I have this object: class a { public string Application; public DateTime From, To;
I have a datetime column in db that I want to transform into a
I have the below db model: from datetime import datetime class TermPayment(models.Model): # I
Suppose I have the following Event model: from django.db import models import datetime class

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.