>> I was going to try out sql 2008 express but I'm not sure how to deal with >> data on a server, or other workstation.<<
Stephen told you that you need a connection. You have to determine how the connection is established. DSNs are easy to maintain and allow the users to switch to different servers and different databases on servers, but you have to establish them on every machine where the app is run. You can programmatically create and manipulate the DSNs so it is easier for you users. DSN-less connections are via connection strings. You have to manage this too, but it is all string manipulation. Either way, you just tell the connection mechanism you choose to point to a different server, or database, or both. The good news: it is all fundamentally the same no matter what database you are using, just a different ODBC/OLE DB driver, or different connection strings. Rick White Light Computing, Inc. www.whitelightcomputing.com www.swfox.net www.rickschummer.com _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com/archives/search/profox This message: http://leafe.com/archives/byMID/profox/000501c95d42$b9b60bb0$2d2223...@com ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

