----------------------------------------------------------- New Message on BDOTNET
----------------------------------------------------------- From: AmitBarde Message 4 in Discussion Hi Balaji, The DB Component for SQL Server and ORACLE is very difficult to maintain if both are incorporated in the same assembly. If this is done , you mess up the code by sending the connection string and queries to every function. Hence , you have to make two assemblies with namespaces which will differentiate the two. e.g. <project_name>.DBSQLServer <project_name>.DBOracle Here, you can make the connection string as a property and use it. Also, you can write functions with DB specific queries in the respective assemblies. ( Since the syntax of Oracle SQL and SQL Server is different ) The breakup into different namespaces will also help use the proper providers for DB Access. Thus, your DBComponent will be more DB Specific. Ciao, Amit MCSD.Net ----------------------------------------------------------- To stop getting this e-mail, or change how often it arrives, go to your E-mail Settings. http://groups.msn.com/BDOTNET/_emailsettings.msnw Need help? If you've forgotten your password, please go to Passport Member Services. http://groups.msn.com/_passportredir.msnw?ppmprop=help For other questions or feedback, go to our Contact Us page. http://groups.msn.com/contact If you do not want to receive future e-mail from this MSN group, or if you received this message by mistake, please click the "Remove" link below. On the pre-addressed e-mail message that opens, simply click "Send". Your e-mail address will be deleted from this group's mailing list. mailto:[EMAIL PROTECTED]
