You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+140-4Lines changed: 140 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -6,16 +6,43 @@
6
6
7
7
dotnet-mysql-replication is a C# Implementation of MySQL replication protocol client. This allows you to receive events like insert, update, delete with their data and raw SQL queries from MySQL.
8
8
9
-
## Usage
9
+
## Features
10
10
11
-
```csharp
11
+
- Connect to MySQL server as a replica
12
+
- Parse and process binary log events in real-time
13
+
- Support for all MySQL data types including JSON, BLOB, TEXT, etc.
14
+
- Handle various events including:
15
+
- Query events (raw SQL statements)
16
+
- Table maps
17
+
- Row events (insert, update, delete)
18
+
- Format description events
19
+
- Rotate events
20
+
- XID events (transaction identifiers)
21
+
- Checksum verification support
22
+
- Built-in support for MySQL binary format parsing
0 commit comments