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 | 1731755238 16/11/2024 12:07:18 |
| _ | 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.
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 16/10/2009, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/cs-bibliobrol-source-rf-model/dao//DAOFactory.cs.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.