I want to convert SQL Server table data to .DBF file.
Below query is working without date. But when I add date it's not working. Please solve my issue, thanks in advance.
Without date:
INSERT INTO Fe130328.DBF (LINENO, BOOK, VCHSERIES, VCHNO, ACCODE, ACHEAD, CITY, NARRATION, DEBIT,CREDIT)
VALUES ('" & str_sr_no & "','" & str_book & "','" & str_vchseries & "','" & str_vchno & "','" & str_accode & "','" & str_achead & "','" & str_city & "','" & str_narration & "','" & str_debit & "','" & str_credit & "')"
With date:
INSERT INTO Fe130328.DBF (LINENO, DATE, BOOK, VCHSERIES, VCHNO, ACCODE, ACHEAD, CITY, NARRATION, DEBIT, CREDIT)
VALUES ('" & str_sr_no & "','21/07/2020','" & str_book & "','" & str_vchseries & "','" & str_vchno & "','" & str_accode & "','" & str_achead & "','" & str_city & "','" & str_narration & "','" & str_debit & "','" & str_credit & "')"