No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

DAOUtils.cs

Description du code

DAOUtils.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

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace be.gaudry.bibliobrol.model.dao
  6. {
  7. public class DAOUtils
  8. {
  9. /// <summary>
  10. /// Fields of Borrow object that we want to load from persistant layer, independant from table structure, fields names, or other persistant structure.
  11. /// Mediabrol Id is allways loaded, no need to define here.
  12. /// </summary>
  13. public enum BORROW_FIELD
  14. {
  15. /// <summary>
  16. /// Id of the borrowed mediabrol.
  17. /// Be carrefull : using this id disallow using borrow id
  18. /// </summary>
  19. id,
  20. /// <summary>
  21. /// Name of the borrowed mediabrol
  22. /// </summary>
  23. name,
  24. /// <summary>
  25. /// Title of brol
  26. /// </summary>
  27. title,
  28. startDate,
  29. endDate,
  30. planDate,
  31. comment,
  32. /// <summary>
  33. /// Name of the borrower
  34. /// </summary>
  35. borrower,
  36. /// <summary>
  37. ///
  38. /// </summary>
  39. brolId,
  40. /// <summary>
  41. /// type name
  42. /// </summary>
  43. type
  44. };
  45. /// <summary>
  46. /// Fields of Brol object that we want to load from persistant layer, independant from table structure, fields names, or other persistant structure.
  47. /// </summary>
  48. public enum BROL_FIELD
  49. {
  50. id,
  51. title,
  52. category,
  53. synopsis,
  54. actors,
  55. cotation,
  56. date,
  57. serie
  58. };
  59. /// <summary>
  60. /// Fields of MediaBrol object that we want to load from persistant layer, independant from table structure, fields names, or other persistant structure.
  61. /// </summary>
  62. public enum MEDIABROL_FIELD
  63. {
  64. id,
  65. name,
  66. date,
  67. i_title,
  68. i_category,
  69. i_cotation,
  70. i_date,
  71. owner,
  72. brolId
  73. };
  74.  
  75. }
  76. }

Structure et Fichiers du projet

Afficher/masquer...


Répertoires contenus dans /var/www/bin/sniplets/bibliobrol/src/model/dao/ 
IcôneNomTailleModification
IcôneNomTailleModification
| _ Répertoire parent0 octets1719965377 03/07/2024 02:09:37
| _msaccess0 octets1541007197 31/10/2018 18:33:17
| _config0 octets1541007197 31/10/2018 18:33:17
| _mysql0 octets1541007198 31/10/2018 18:33:18
Fichiers contenus dans /var/www/bin/sniplets/bibliobrol/src/model/dao/ 
IcôneNomTailleModificationAction
IcôneNomTailleModificationAction
Afficher le fichier .cs|.csIExporterDao.cs1.98 Ko31/10/2018 18:32:54-refusé-
Afficher le fichier .cs|.csIBrolDao.cs6.25 Ko31/10/2018 18:32:54-refusé-
Afficher le fichier .cs|.csIImporterDao.cs686 octets31/10/2018 18:32:54-refusé-
Afficher le fichier .cs|.csITaskDao.cs351 octets31/10/2018 18:32:54-refusé-
Afficher le fichier .cs|.csDAOFactory.cs2.58 Ko31/10/2018 18:32:54-refusé-
Afficher le fichier .cs|.csIMediaBrolDao.cs9.86 Ko31/10/2018 18:32:54-refusé-
Afficher le fichier .cs|.csIStatsDao.cs431 octets31/10/2018 18:32:54-refusé-
Afficher le fichier .cs|.csIPersonDao.cs4.87 Ko31/10/2018 18:32:54-refusé-
Afficher le fichier .cs|.csDAOUtils.cs2.18 Ko31/10/2018 18:32:54-refusé-
Afficher le fichier .cs|.csISerieDao.cs362 octets31/10/2018 18:32:54-refusé-
Afficher le fichier .cs|.csIConfigDao.cs705 octets31/10/2018 18:32:54-refusé-

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//DAOUtils.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.