Results 1 to 1 of 1

Thread: update & insert operation, asp, vbscript, Ms Acce

  1. #1
    Join Date
    Jun 2007
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Ms Acce

    I have used the following codes:


    Code:
    connectionString = "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=c:\progam files\mail.mdb"
    
    
    ‘ execute the update
    
    Set MM_editCmd = Server.CreateObject("ADODB.Command")
    
       MM_editCmd.ActiveConnection = ConnectionDb
    
       MM_editCmd.CommandText = sql
    
        MM_editCmd.Execute 
    
        MM_editCmd.ActiveConnection.Close
    Last edited by Dilruba; 11-15-2007 at 06:36 AM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •