08-14-2018
06:43 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
08-14-2018
06:43 PM
Hi,
I havent done this with ilogic, but i use VBA to do similar..
This is the code i usually use to add new rows to the database..
rs.CursorType = adOpenDynamic
rs.LockType = adLockOptimistic
rs.Open "Tablename", cn, , , adCmdTable
rs.AddNew
rs!FieldName = DataString
rs.Update
rs.Close
I hope that helps you.
Dean.