dlr-sdb.conf
上传用户:gzpyjq
上传日期:2013-01-31
资源大小:1852k
文件大小:2k
源码类别:

手机WAP编程

开发平台:

WINDOWS

  1. # DLR with LibSDB support configuration
  2. #
  3. # Example defining a LibSDB resource (as an abstraction of a real database)
  4. # and the required table and field values.
  5. #
  6. # As of LibSDB 0.5.0 the following database types are supported with
  7. # the associated URL resource scheme:
  8. #   mysql:host=XXX:db=XXX:uid=XXX:pwd=XXX
  9. #   postgres:host=XXX:db=XXX:port=XXX
  10. #   oracle:uid=XXX:pwd=XXX OR oracle:uid=username/password@instance
  11. #   sqlite:db=/full/path/to/db
  12. #   lago:host=XXX:port=XXX:db=XXX:uid=XXX:pwd=XXX
  13. #   mimer:db=XXX:uid=XXX:pwd=XXX
  14. #   odbc:dsn=postgresql
  15. #   sdbd:host:port:url=XXX
  16. #   text:/path/to/db/ (note trailing slash)
  17. #
  18. # Beware that you have the DB support build in your LibSDB installation
  19. # when trying to use a specific DB type within the URL.
  20. #
  21. # LibSDB is available at http://siag.nu/libsdb/
  22. #
  23. group = sdb-connection
  24. id = mydlr
  25. url = "mysql:host=localhost:db=dlr:uid=foo:pwd=bar"
  26. # Create the required table for the DLR support in the database 
  27. # with something similar like this, i.e. for MySQL: 
  28. #   CREATE TABLE dlr (
  29. #     smsc varchar(40),
  30. #     ts varchar(40),
  31. #     destination varchar(40),
  32. #     service varchar(40),
  33. #     url varchar(255),
  34. #     mask int(10),
  35. #     status int(10)
  36. #   )
  37. #
  38. # Other DB types may vary. Consult your DB admin for help in creating
  39. # the appropriate table space and connection details for the real DB.
  40. #
  41. group = dlr-dlr
  42. id = mydlr
  43. table = dlr
  44. field-smsc = smsc
  45. field-timestamp = ts
  46. field-destination = destination
  47. field-service = service
  48. field-url = url
  49. field-mask = mask
  50. field-status = status