We Recommend

Visual Basic 2008 Programmer's Reference Visual Basic 2008 Programmer's Reference
Visual Basic Orcas Programmer's Reference is a language tutorial and a reference guide to the upcoming Orcas release of Visual Basic. The tutorial provides basic material suitable for beginners but also includes in-depth content for more advanced developers.


Posted By

qrist0ph on 05/26/08


Tagged

sql


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

alexxx


VBS Datenbankzugriff


Published in: Visual Basic 


  1. Set CN = CreateObject("ADODB.Connection")
  2. CN.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data source=Build\Ftkomponenten.mdb"
  3. CN.execute("Delete * from Properties")
  4. CN.execute("Insert into Properties VALUES ('" & text & "','1.0." & revision & "')")
  5. CN.Close

Report this snippet 

You need to login to post a comment.