A
Alp Bekisoglu
Hi,
I'm having a problem with proper format data entry via and VBA run SQL
statement. To check what's happening I have included a MsgBox as well as
Debug.Print in the code. These two indicate that the data is gathered
correctly, as dd-mm-yyyy. But when the SQL INSERT's tha data to the table
the very same value turns into mm-dd-yyyy.
Can someone please guide me in the right direction to deal with this
problem?
The date field (odeme_tar) in the table is formatted as Short Date with an
input mask of 99-99-9999;0;
A few lines off of Debug.Print (line 1 is source for MsgBox, 2 is the
strSQL):
1 07-07-2004 1st installment 6772.19 13544.39
INSERT INTO tb_tmp_pl (sirala, odeme_tar, izahat, miktar, sonuc) VALUES ('
1', #07-07-2004#, ' 1st installment', 6772.19, 13544.39);
2 07-08-2004 2nd installment 6772.19 6772.201
INSERT INTO tb_tmp_pl (sirala, odeme_tar, izahat, miktar, sonuc) VALUES ('
2', #07-08-2004#, ' 2nd installment', 6772.19, 6772.201);
3 07-09-2004 3rd installment 6772.2 4.882813E-04
INSERT INTO tb_tmp_pl (sirala, odeme_tar, izahat, miktar, sonuc) VALUES ('
3', #07-09-2004#, ' 3rd installment', 6772.2, 4.882813E-04);
And a copy of the above from the table itself:
sirala odeme_tar izahat miktar sonuc
1 07-07-2004 1st installment 6772.19 13544.39
2 08-07-2004 2nd installment 6772.19 6772.201
3 09-07-2004 3rd installment 6772.2 4.882813E-04
Thanks in advance
Alp
I'm having a problem with proper format data entry via and VBA run SQL
statement. To check what's happening I have included a MsgBox as well as
Debug.Print in the code. These two indicate that the data is gathered
correctly, as dd-mm-yyyy. But when the SQL INSERT's tha data to the table
the very same value turns into mm-dd-yyyy.
Can someone please guide me in the right direction to deal with this
problem?
The date field (odeme_tar) in the table is formatted as Short Date with an
input mask of 99-99-9999;0;
A few lines off of Debug.Print (line 1 is source for MsgBox, 2 is the
strSQL):
1 07-07-2004 1st installment 6772.19 13544.39
INSERT INTO tb_tmp_pl (sirala, odeme_tar, izahat, miktar, sonuc) VALUES ('
1', #07-07-2004#, ' 1st installment', 6772.19, 13544.39);
2 07-08-2004 2nd installment 6772.19 6772.201
INSERT INTO tb_tmp_pl (sirala, odeme_tar, izahat, miktar, sonuc) VALUES ('
2', #07-08-2004#, ' 2nd installment', 6772.19, 6772.201);
3 07-09-2004 3rd installment 6772.2 4.882813E-04
INSERT INTO tb_tmp_pl (sirala, odeme_tar, izahat, miktar, sonuc) VALUES ('
3', #07-09-2004#, ' 3rd installment', 6772.2, 4.882813E-04);
And a copy of the above from the table itself:
sirala odeme_tar izahat miktar sonuc
1 07-07-2004 1st installment 6772.19 13544.39
2 08-07-2004 2nd installment 6772.19 6772.201
3 09-07-2004 3rd installment 6772.2 4.882813E-04
Thanks in advance
Alp