dear brothers i have a problem in saving ma data in the database.so i need help thanks.

Recommended Answers

All 3 Replies

what a problem? post your code friend and show the effort and you will get help from many people here :)

hera a sample code for saving

rec.Open (esql1), conn, adOpenDynamic, adLockOptimistic

rec!StudentNumber = txtSTUDID.Text

rec is your dim on adodb.recordset
conn if for dim on adodb.connection


rec!StudentNumber = txtSTUDID.Text

StudentNumber = the field name

txtSTUDID.text = saving the text inside the textbox


if this is not your prob then kindly post your code
or explain further whats your prob


chao..

if you want to save the data then no need to open the record set at all.

Try using this sample code

'con is the adodb connection object
con.BeginTrans
con.execute "your insert or update statement here."
con.CommitTrans
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.