DAOFactory.cs
Description du code
DAOFactory.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# (DAOFactory.cs) (71 lignes)
using be.gaudry.bibliobrol.config; using be.gaudry.bibliobrol.model.enums; using be.gaudry.bibliobrol.model.dao.config; namespace be.gaudry.bibliobrol.model.dao { /// <summary> /// Provides concrete persistence classes for the persistent type defined in the user settings /// </summary> public abstract class DAOFactory { #region singleton protected static DAOFactory instance = null; protected DAOFactory() { } /// <summary> /// Get unique instance of <code>DAOFactory</code> providing methods to access to the persistent layer. /// </summary> public static DAOFactory Instance { get { lock (threadLockObject) { if (instance == null) { resetDAO(); } return instance; } } } /// <summary> /// Resets unique instance of <code>DAOFactory</code> to use another persistent layer.<br /> /// <b><u>Be extremly carefull with using this method :</u></b> if application is not restarted, /// inconsistent data between old persistent layer /// and new persistent layer will crash the application and the persistent storage. /// </summary> public static void resetDAO() { PERSISTENCE_TYPE persistentType = Config.PersistentType; switch (persistentType) { //case PERSISTENCE_TYPE.SQLExpress: //case PERSISTENCE_TYPE.MySQL: // instance = new mysql.MySQLFactory(); // break; //case PERSISTENCE_TYPE.Access: default: break; } } #endregion #region getDao methods to implement public abstract AbstractDBConfig getDBConfig(); public abstract IConfigDao getConfigDao(); public abstract IPersonDao getPersonDao(); public abstract IBrolDao getBrolDao(); public abstract IMediaBrolDao getMediaBrolDao(); public abstract ITaskDao getTaskDao(); public abstract IExporterDao getExporterDao(); public abstract IImporterDao getImporterDao(); public abstract IStatsDao getStatsDao(); public abstract ISerieDao getSerieDao(); #endregion } }
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1731754791 16/11/2024 11:59:51 |
| _ | msaccess | 0 octets | 1541007197 31/10/2018 18:33:17 |
| _ | config | 0 octets | 1541007197 31/10/2018 18:33:17 |
| _ | mysql | 0 octets | 1541007198 31/10/2018 18:33:18 |
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//DAOFactory.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.