Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Inserting to an Access database
Message
From
13/11/2001 16:28:23
 
 
To
13/11/2001 15:34:31
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00581101
Message ID:
00581147
Views:
17
This message has been marked as the solution to the initial question of the thread.
Date is a reserved word, try using
"INSERT INTO Training ( course , name , [date])"; && etc..
Also if ldDate is a date type in VFP you should convert to character to be able to concatenate. (Of course it would be giving a different error message)
HTH

>I need some help on the following :
>
>I have been trying to insert a record to an Access database. I get an error when I try to insert it to a date field in the Access database.
>Here is the code :
>
>******************************************************************
>lcCourse = CourseList.Name && Get the name from CourseList cursor
>lcEmployeeName = EmployeeList.Name && get the employee form EmployeeList cursor
>
>ldDate = DTOC(Thisform.txtTrainingDate.Value)
>
>lcMDBStr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=l:\ehs\data\eh&s.mdb;"
>oCn = Create("adodb.Connection")
>oCn.Open(lcMDBStr)
>oCn.Execute("INSERT INTO Training ( course , name , date );
> Values ( " + "'" + lcCourse + "' , ;
> " + "'" + lcEmployeeName + "' , ;
> " + "'" + ldDate + "' ) ")
>
>*******************************************************************
>
>I get the following error :
>
>OLE IDispatch exeption code 0 from Microsoft Jet database Engine:
>Syntax error in INSERT INTO statement...
>
>Any help would be appreciated.
>
>Thanks,
>Sergio
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform