mysql.class.php 461 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * ZenTaoPHP的dao和sql类。
  4. * The dao and sql class file of ZenTaoPHP framework.
  5. *
  6. * The author disclaims copyright to this source code. In place of
  7. * a legal notice, here is a blessing:
  8. *
  9. * May you do good and not evil.
  10. * May you find forgiveness for yourself and forgive others.
  11. * May you share freely, never taking more than you give.
  12. */
  13. /**
  14. * MySQL类。
  15. * MySQL driver.
  16. *
  17. * @package framework
  18. */
  19. class mysql extends dao
  20. {
  21. }