WEB Seite parameter -> SQL übergeben

  • Thread starter Thread starter pgomp
  • Start date Start date
P

pgomp

Guest
Hallo zusammen!

Ich habe eine Einfache WEB Seite in Access erstellt z.B Seite1 Da habe ich ein Dropdownlist, wo die Werte von eine Tabelle stammen. Die Wahl des Users soll in ein SQL als Parameter/Bedingung übergeben, und das Ergebnis der SQL soll in ein Textfeld geschrieben. Mein Problem ist ich schaffe es nicht die Ausgewählte Wert des Users in dem SQL Befehl zu übertragen.

Kann jemand helfen?

Danke !
 
OK, German is not my strong point but I'll have a go. :)

If you want to use the value in a textbox/combobox etc as criteria for a query, you just need to refer to the textbox/combobox in your query.

(Okay ist Deutscher nicht mein starker Punkt, aber ich werde ein Gehen haben. :)

Wenn Sie den Wert in einem textbox/combobox etc. als Kriterien für eine Frage gebrauchen wollen, müssen Sie sich gerade auf den textbox/combobox in Ihrer Frage beziehen.)


e.g.

Code:
SELECT field_1, field_2, field_3 
FROM table_1
WHERE field_1 = Forms![Your_Form]![Combobox].Value

I don't know if this is what you meant as I don't speak German, but if you can upload a sample database I might be able to see easier what you want to do.

(Ich weiß nicht, wenn das ist, was Sie meinten, wie ich German nicht spreche, aber wenn Sie eine Beispieldatenbank laden können, könnte ich im Stande sein, besser zu sehen, was Sie tun wollen.)
 
From FreeTranslation.com:

"I have have a simple WEB side in Access generated z. B SEITE1 there I a Dropdownlist where the values come of a table. The choice of the user should deliver condition into a SQL as a parameter, and the result of the SQL should written into a text field. I am create my problem to transmitted it not the selected value of the user in the SQL command.

Can someone help?

Thanks!
 

Users who are viewing this thread

Back
Top Bottom