Download the latest sql server database driver and place it into the lib folder. Restart Tomcat server, once the below changes are done.
1. web.xml configuration
Go to Tomcat root directory -> then explore webapps directory -> select cos (i.e., it is your project folder) and finally select WEB-INF folder. Open web.xml file, if not one, then create web.xml configuration file. Add the below code after <web-app> root tag.
Wednesday, August 25, 2010
Monday, August 23, 2010
SQL Server and MySQL Database Models in a C#.NET Application - Part 2
Properties
#region "Properties"
public DataSet RecordList
{
get { return dsList; }
set { dsList = value; }
}
#endregion "Properties"
public DataSet RecordList
{
get { return dsList; }
set { dsList = value; }
}
#endregion "Properties"
Tuesday, August 10, 2010
SQL Server and MySQL Database Models in a C#.NET Application - Part 1
Develop a C#.NET web application using multiple database using SQL Server 2005/2008 and MySQL 5.1. I got the requirements from one of my client, web application should support both SQL Server and MySQL database. Where ever my client want to install the application to go with either any one of SQL Server or MySQL database setup.
Sunday, August 8, 2010
Free Download Visual Studio 2010 Express/Professional Edition
Microsoft released Visual Studio 2010 and .NET Framework 4. Lots of great things being included in Visual Studio 2010 with regards to ASP.NET 4, ASP.NET MVC 2, Entity Framework 4, new Windows Presentation Framework(WPF) code editor, multi-monitor support, etc.
Subscribe to:
Posts (Atom)