Vous devez être membre et vous identifier pour publier un article.
Les visiteurs peuvent toutefois commenter chaque article par une réponse.
Se connecter à une base de données Access 2007
Article publié le 09/12/2007 12:54:34Si vous vous connectez à une base de données Access2007 avec un DbConnectionStringBuilder ou en créant directement une OleDbConnection, le provider n'est pas le même que sous Access2003.
Exemples
Access 2003
DbConnectionStringBuilder str = new DbConnectionStringBuilder();
str.Add("Provider", "Microsoft.Jet.OLEDB.4.0");
str.Add("Data Source", Config.AccessSourceDB);
Access 2007
DbConnectionStringBuilder str = new DbConnectionStringBuilder();
str.Add("Provider", "Microsoft.ACE.OLEDB.12.0");
str.Add("Data Source", Config.AccessSourceDB);
Code c# (10 lignes)
oOleDbDataAdapter.SelectCommand.Connection = new System.Data.OleDb.OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=E:/data/bibliobrol2007.accdb"); oOleDbDataAdapter.SelectCommand.CommandType = CommandType.Text; oOleDbDataAdapter.SelectCommand.CommandText = "SELECT * FROM [brols]"; oOleDbDataAdapter.Fill(oDataTable); dataGridView1.DataSource = oDataTable;
Un article de Steph
Source : indéterminée
Commentaires
09/12/2007 14:05:45
Merci pour l'info.
- Si je n'ai pas Access 2007, l'application tourne quand même?
- Comment est-ce que je peux faire un binding soit sur Access 2003 soit sur Access 2007?
- nohope -
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 13/09/2004, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/ast-rf-422.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.