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

  • SEARCH
  • Home
  • 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 8334631
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T03:25:03+00:00 2026-06-09T03:25:03+00:00

I am trying to load database data by using dbplannercalender1. procedure TForm1.DBPlannerCalendar1DaySelect(Sender: TObject; SelDate:

  • 0

I am trying to load database data by using dbplannercalender1.

procedure TForm1.DBPlannerCalendar1DaySelect(Sender: TObject;
  SelDate: TDateTime);
begin
with absQuery2 do
begin
  absQuery2.Close;
  absQuery2.sql.Clear;
  ABSQuery2.SQL.Text:='select * from log where date = :a1';
  ABSQUERY2.PARAMS.ParamByName('a1').value:= DBPlannerCalendar1.Date;
  ABSQuery2.ExecSQL;
end;
end;

I get the error “date string expected”YYYY-MM-DD”,but “=”found at line 1…”
What am I doing wrong ?

  • 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-09T03:25:06+00:00Added an answer on June 9, 2026 at 3:25 am

    Use AsDateTime instead of Value, to let the driver convert it to the proper format:

    AbsQuery2.Params.ParamByName('a1').AsDateTime := DBPlannerCalendar1.Date;
    

    If Absolute doens’t support AsDateTime for some reason, format the date yourself:

    AbsQuery2.Params.ParamByName('a1').Value := 
        FormatDateTime('yyyy-mm-dd`, DBPlannerCalendar1.Date);
    

    The first method is the best choice, because it works more portably between database engines (it works for all of them, because the driverr does the formatting into the proper arrangement for dates). Using the second means that if the DB expects something different than YYYY-MM-DD, you have to change the code everywhere that uses dates.

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

Sidebar

Related Questions

I'm trying to load data into a MySQL database using the LOAD DATA LOCAL
I am trying to load mysql data from my database from a html select
I am trying to load a data file into mysql table using LOAD DATA
I'm trying to load data from a CSV file into a MySQL database, and
Im using DoctrineFixturesBundle and trying to load fixtures app/console -e=test doctrine:fixtures:load --purge-with-truncate All data
I'm trying to load a CSV into MySQL using the LOAD DATA INFILE technique.
I am trying to load a large amount of data into my Oracle database,
I'm trying to create a chart using data from my database calling json, but
I am trying to load a csv file in oracle database using sql loader
I am trying to load data in to datagrid of SilverLight using Entity Framework

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.