Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

adding records - speed issue

Status
Not open for further replies.

wekkew

Programmer
Sep 28, 1998
123
GB
Hello

vb front end on access db - have approx 4000 records (a record is approx 255 chars) to be fed from vb to access. Don't really want to do this with addnew and update statements due to speed.

Any suggestions - the faster the better :)

thanks
 
Your Question:
vb front end on access db - have approx 4000 records (a record is approx 255 chars) to be fed from vb to access. Don't really want to do this with addnew and update statements due to speed.

Use My suggestion - the faster the better one:
"
Dim adCon9 As New ADODB.Connection
adCon9.Execute ("INSERT INTO TABLE_A VALUES('" & a1 & "', " & a2 & ", " & a3 & ", '" & a4 & "', '" & a5 & "' )")


"
hallo there! now injoy programming and if u have any further queries u may contact me on--"toranjeet@glide.net.in"

bye for now dear..... urs ranjeet



 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top