-
Notifications
You must be signed in to change notification settings - Fork 45
Home
Chris Hughes edited this page Dec 31, 2017
·
6 revisions
Early-alpha
- In general worth comparing each type for equivalence with the SqlClient for best practice.
- In general worth comparing each type for equivalence with the old AseClient for completeness of a drop in replacement.
- SqlException has an Errors collection containing SqlError objects. It is derived from DbException.
- We should avoid depending on Linq.
- Consider running this to eliminate the JIT cost prior to packing the Nuget package: http://www.jackdermody.net/article/Compiling_NET_Core_to_Native
In theory, since we're implementing TDS 5.0, this client might work with other SAP (Sybase) or Microsoft databases that also support TDS 5.0, however our goal is just for ASE 15.x-16x support, so this is all we're testing with.
-
TDS 5.0 Functional Specification Version 3.8
- TDS 5.0 Functional Specification Version 3.4
- There is a newer version of the spec (Version 3.9) -- if you can find a link to this spec, let its existence be known.
-
Sybase.AdoNet4.AseClient
packet captures- Dump the raw TDS packets with this connection string parameter:
ProtocolCapture=output-dump-file.tds
- Translate to readable text using the 'ribo' utility packaged with Sybase client installation @
C:\Sybase\jutils-XXX\ribo
from command line (requires RIBO_HOME and JAVA_HOME env vars):ribo output-dump-file.tds readable-file.txt
- This will be immensely useful in translating capability bytes
- Dump the raw TDS packets with this connection string parameter:
- Using the driver
- Developing the driver