07-26-2005 01:04 PM
07-26-2005 01:06 PM
07-26-2005 01:14 PM - edited 07-26-2005 01:14 PM
Message Edited by Novatron on 07-26-2005 02:18 PM
07-26-2005 01:25 PM
07-26-2005 09:29 PM
The easy part of what you are wanting to do is getting to a database because it all comes built into Windows. The database management system is Jet and the interface capability is through ADO. Neither of which have a licensing requirement. However, Jet (the database management system, or DBMS that Access uses) is a very poor choice for multi-user applications. Although MySQL is very popular, I have always prefered Firebird, which is another Open Source DBMS that is much more robust (and safer for your data) than MySQL. Another option is the MSDE or Microsoft Desktop Engine. This is basically a desktop version of SQL Server that is free for most applications--check their licensing agreement for details. Bottom line: there are a ton of choices for DBMS and the interface capability is built into Windows so you don't have to buy that either.
For more info, see this thread too...
http://forums.ni.com/ni/board/message?board.id=170&message.id=132530
07-27-2005 06:56 AM
07-27-2005 07:52 AM
07-27-2005 08:09 AM
Yes Paul;
But as unclebump points out, scalability can become an issue. However the best part of the approach you are taking is that if you learn the ADO part well and implement good clean modular code, you can move your application in the future to "industrial strength" database management systems like SQL Server or Oracle with little or no change in your LV code.
07-27-2005 08:32 AM
07-27-2005 08:41 AM