MySQLFactory.cs
Description du code
MySQLFactory.cs est un fichier du projet BiblioBrol.Ce fichier est situé dans /var/www/bin/sniplets/bibliobrol/src/.
Projet BiblioBrol :
Gestion de media en CSharp.
Pour plus d'infos, vous pouvez consulter la brève analyse.
Code source ou contenu du fichier
Code c# (MySQLFactory.cs) (125 lignes)
using System; using System.Collections; using System.Collections.Generic; using System.Text; using System.Data; using System.Data.OleDb; using System.Data.Common; using System.Configuration; using be.gaudry.bibliobrol.model.enums; using be.gaudry.bibliobrol.model.dao.config; using be.gaudry.bibliobrol.config; using MySql.Data.MySqlClient; namespace be.gaudry.bibliobrol.model.dao.mysql { public class MySQLFactory:DAOFactory { private DbProviderFactory dbpf; private String connStr, provider; private MySQLConfig dbConfig; public MySQLFactory() { setConnectionSettings(); } private void setConnectionSettings() { if (dbpf == null) { provider = "MySql.Data.MySqlClient"; dbpf = DbProviderFactories.GetFactory(provider); } } public String getConnectionString() { /* * String conStr = "DRIVER={MySQL ODBC 5.1 Driver};SERVER=localhost;UID=root;DATABASE=bibliobrol;Password=;"; * System.Data.Odbc.OdbcConnection con = new System.Data.Odbc.OdbcConnection(conStr); */ if (connStr == null) { //connStr = "Provider=MySQL ODBC 5.1 Driver;SERVER=localhost;UID=root;DATABASE=bibliobrol;Password=;"; //MySqlConnectionStringBuilder str = new MySqlConnectionStringBuilder(); //str.Database = "bibliobrol"; //str.Password = ""; //str.Server = "localhost"; //str.UserID = "root"; //str.Add("Provider", "{MySQL ODBC 5.1 Driver}");//.NET Framework Data Provider for MySQL str.Add("Data Source", dbConfig.DBUrl);//Data Source or Server ? str.Add("Database", dbConfig.DBName); str.Add("User Id", dbConfig.DBUserName); str.Add("Password", dbConfig.DBPassword); connStr = str.ConnectionString;//server=localhost;user id=root;database=bibliobrol //connStr = "Provider=MySQLProv;Data Source=localhost;User Id=root;Database=bibliobrol;Password=;"; } return connStr; } public DbProviderFactory getDbpf() { return this.dbpf; } #region getDao methods public override AbstractDBConfig getDBConfig() { return dbConfig; } public override IConfigDao getConfigDao() { return NoChangeConfigDao.Instance; } public override IPersonDao getPersonDao() { return NoChangePersonDao.Instance; } public override IBrolDao getBrolDao() { return NoChangeBrolDao.Instance; } public override IMediaBrolDao getMediaBrolDao() { return MySQLMediaBrolDao.Instance; } public override ITaskDao getTaskDao() { return NoChangeTaskDao.Instance; } public override IExporterDao getExporterDao() { return NoChangeExporterDao.Instance; } public override IImporterDao getImporterDao() { return NoChangeImporterDao.Instance; } public override IStatsDao getStatsDao() { return MySQLStatsDao.Instance; } public override ISerieDao getSerieDao() { return NoChangeSerieDao.Instance; } #endregion } }
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1731753041 16/11/2024 11:30:41 |
| _ | utils | 0 octets | 1541007203 31/10/2018 18:33:23 |
Utilisation de l'explorateur de code
- Navigation :
- Un clic sur une icône de répertoire ouvre ce répertoire pour en afficher les fichiers.
- Lorsque le répertoire en cours ne contient pas de sous-répertoires il est possible de remonter vers le répertoire parent.
- La structure de répertoires en treetable (tableau en forme d'arborescence) n'est plus possibledans cette version.
- Un clic sur une icône de fichier ouvre ce fichier pour en afficher le code avec la coloration syntaxique adaptée en fonction du langage principal utilisé dans le fichier.
- Affichage :
- Il est possible de trier les répertoires ou les fichiers selon certains critères (nom, taille, date).
- Actions :
- Les actions possible sur les fichiers dépendent de vos droits d'utilisateur sur le site. Veuillez activer le mode utilisateur pour activer les actions.
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 16/10/2009 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/cs-bibliobrol-source-rf-model/dao/mysql/MySQLFactory.cs.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.