07-31-2009 05:37 AM
hi,
How can i compare the fields in ms-access table with the fornt panel control values.
InAdvance Thanks
Regards
Soundarya
07-31-2009 06:04 AM
Hi Soundarya,
can you explain a bit more please? Why do you need it? You can use a SELECT query to get all rows with specified values, no need to compare something.
Mike
07-31-2009 06:10 AM
You can find a dll that may help here:
http://zone.ni.com/devzone/cda/epd/p/id/3409
Greets Christian Riedel
07-31-2009 06:20 AM
hi,
i have some values in the database as: uname=ate and password=ate.
and i have two string controls in the front panel.
so i want to compare the fields in the database such as uname and password with the string controls in the front panel.
how can i do this?
InAdvance Thanks
Regards
Soundarya
07-31-2009 06:25 AM
07-31-2009 06:34 AM
Hi Soundarya,
as mentioned before, you can use a SELECT query.
SELECT password FROM yourtablename WHERE uname='ate'
It's only an example, you should change the "ate" with the value from your control. The result contains the password which you can compare with the value from the other control.
Mike
08-13-2009 01:53 AM
hi,
how can i know whether a particular record in the database(ms-access) exists or not?
InAdvance Thanks
Regards
Soundarya
08-13-2009 03:08 AM
hi,
how can i know whether a particular record in the database(ms-access) exists or not?
InAdvance Thanks
Regards
Soundarya
08-13-2009 04:51 PM
If your query does not return any results.