02/02/2015 by Nitesh

Connect Access 2007-2010 Database In C#

Friends, In this post, we will see how can we connect Access 2007-2010 database in C#. As we know Microsoft introduced new Access format from Access 2007 onwards (.accdb extension), we cannot use the default JET.OLEDB provider that we used to use before. With the new database, Microsoft also launched a new provider namely ACE.OLEDB…

Continue Reading »

14/01/2015 by Nitesh

Solution: ‘Microsoft.Jet.OLEDB.4.0’ provider is not registered on the local machine

Friends, While working with Access, many times you may get the famous exception “Microsoft.Jet.OLEDB.4.0′ provider is not registered on the local machine“. This normally happens that your code runs fine on your development machine and when you try the run it on production server, this error comes. IN this post, we will see a solution…

Continue Reading »

09/01/2015 by Nitesh

Solution : Oledb Exception – No value given for one or more required parameters

Friends, In this post, we will see solution to an error that occurs when using OleDbConnection classes to connect with Access database. The exception says – “No value given for one or more required parameters”. This can occur while inserting, selecting, updating or deleting data in Access database.  The common problems to this error are…

Continue Reading »