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

手机WAP编程

开发平台:

WINDOWS

  1. # DLR with MySQL support configuration
  2. #
  3. # Example defining a MySQL database connection resource and 
  4. # the required table and field values.
  5. #
  6. group = mysql-connection
  7. id = mydlr
  8. host = localhost
  9. mysql-username = foo
  10. mysql-password = bar
  11. database = dlr
  12. # Create the required table for the DLR support in the database 
  13. # with something similar like this: 
  14. #   CREATE TABLE dlr (
  15. #     smsc varchar(40),
  16. #     ts varchar(40),
  17. #     destination varchar(40),
  18. #     service varchar(40),
  19. #     url varchar(255),
  20. #     mask int(10),
  21. #     status int(10)
  22. #   )
  23. #
  24. group = dlr-mysql
  25. id = mydlr
  26. table = dlr
  27. field-smsc = smsc
  28. field-timestamp = ts
  29. field-destination = destination
  30. field-service = service
  31. field-url = url
  32. field-mask = mask
  33. field-status = status