Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Inserting records to an Access database
Message
From
13/11/2001 11:31:48
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
Inserting records to an Access database
Miscellaneous
Thread ID:
00580922
Message ID:
00580922
Views:
48
Hello everyone,

I am inserting recods to an access database and I need to check if the records have been inserted succesfully. Can anyone tell me how to do that.?
Here is the code : The code is located in the Click event of a command button within a form.


*-- Insert a record to a VFP table
lcNewID = newid("training")
INSERT INTO training (training_id , name , date ) ;
VALUES ( lcNewID, CourseList.name, Thisform.txtTrainingDate.Value)

*-- Inset a record to an acces table
lcCourse = CourseList.Name && get the name from a VFP table called CourseList
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 ( name );
Values ( " + "'" + lcCourse + "' ) ")
Thisform.Reset()


*******************************************************************************
Thanks,
Sergio
Next
Reply
Map
View

Click here to load this message in the networking platform