Subversion Repositories HomeAutomation

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1.  
  2. function MySql_Connect(server, username, password)
  3. {
  4.   return MySqlExport_Connect(server, username, password);
  5. }
  6.  
  7. function MySql_Close(resource)
  8. {
  9.   return MySqlExport_Close(resource);
  10. }
  11.  
  12. function MySql_Query(resource, query)
  13. {
  14.   return MySqlExport_Query(resource, query);
  15. }
  16.  
  17. function MySql_SelectDb(resource, database)
  18. {
  19.   return MySqlExport_SelectDb(resource, database);
  20. }
  21.  
  22. function MySql_AffectedRows(resource)
  23. {
  24.   return MySqlExport_AffectedRows(resource);
  25. }
  26.