Spaten: Select-Ergebnis in Variable (VBScript)

Hi Fachleute,
ich baue gerade einen Passwortschutz mit ASP zusammen.
Dazu suche ich mir aus einer Datenbank eine Userkennung heraus, welche dann als Variable im VBScript landen soll.

Wie bekomme ich dieses SELECT-Ergebnis (aus DB) in die Variable meines VBScripts?

Danke im Voraus
Spaten

  1. Hi,

    so geht's:

    ' this code opens the database
    myDSN="DSN=Student;uid=student;pwd=magic"
    set conntemp=server.createobject("adodb.connection")
    conntemp.open myDSN

    ' this code retrieves the data
    mySQL="select * from publishers where state='NY'"
    set rstemp=conntemp.execute(mySQL)

    ' put field into variable
    name=rstemp("name")

    Gruss
    Tobias

    1. Hi,

      so geht's:

      ' this code opens the database
      myDSN="DSN=Student;uid=student;pwd=magic"
      set conntemp=server.createobject("adodb.connection")
      conntemp.open myDSN

      ' this code retrieves the data
      mySQL="select * from publishers where state='NY'"
      set rstemp=conntemp.execute(mySQL)

      ' put field into variable
      name=rstemp("name")

      Gruss
      Tobias

      ---
      Klasse!
      Thx!