Select-Ergebnis in Variable (VBScript)
Spaten
- vb-script
0 Tobias Scheck0 Spaten
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
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
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!