Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Inserting to an Access database
Message
From
13/11/2001 15:34:31
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
Inserting to an Access database
Miscellaneous
Thread ID:
00581101
Message ID:
00581101
Views:
54
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
Next
Reply
Map
View

Click here to load this message in the networking platform