sybase 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. * Sybase Data Provider
  2. <ul>
  3. <li>ADO.NET Provider for Sybase SQL Server databases
  4. <li>Exists in namespace Mono.Data.SybaseClient and assembly Mono.Data.SybaseClient
  5. <li>Created by Tim Coleman
  6. <li>Used the <a href="http://www.freetds.org/">FreeTDS</a> and
  7. <a href="http://jtds.sourceforge.net/">jTDS</a> projects as resources.
  8. <li>Implemented in 100% C#
  9. <li>Is similar to the Mono.Data.TdsClient and System.Data.SqlClient providers.
  10. <li>Uses TDS Protocol Version 5.0
  11. <li><a href="http://www.go-mono.com/tds-providers.html">Design of the Microsoft SQL Server, Sybase, and TDS Providers in Mono</a>
  12. </ul>
  13. * Current Status
  14. <ul>
  15. <li>Able to connect to Sybase databases
  16. <li>SQL commands can be executed
  17. via ExecuteNonQuery() of a SybaseCommand.
  18. <li>SQL aggregates can be executed and a single row and single column
  19. result can be retrieved via ExecuteScalar() of a SybaseCommand
  20. <li>SQL queries can be executed via ExecuteReader() and results
  21. can be retrieved via SybaseDataReader.
  22. <li>a DataTable with schema info about a result can be gotten via GetSchemaTable()
  23. in a SybaseDataReader
  24. <li>Data can be filled in a DataTable in a DataSet via a SybaseDataAdapter
  25. </ul>
  26. * Action plan
  27. <ul>
  28. <li>Connection timeouts is being developed now.
  29. <li>TODO
  30. </ul>