@@ -157,7 +157,6 @@ public async Task ExampleTransaction(IDbConnection connection)
157157` ` `
158158
159159More info can be found in [here](https://docs.sqlc.dev/en/stable/howto/transactions.html).
160-
161160# PostgresSQL
162161<details>
163162<summary>:execlastid - Implementation</summary>
@@ -245,7 +244,6 @@ INSERT INTO tab1 (macaddr8_field) VALUES (sqlc.narg('macaddr8_field')::macaddr8)
245244` ` `
246245
247246</details>
248-
249247# MySQL
250248<details>
251249<summary>:execlastid - Implementation</summary>
@@ -330,7 +328,6 @@ we consider support for the different data types separately for batch inserts an
330328| geometrycollection | ⚠️ | ⚠️ |
331329
332330</details>
333-
334331# SQLite3
335332<details>
336333<summary>:execlastid - Implementation</summary>
@@ -403,6 +400,7 @@ amount of data types that are supported by SQLite. The supported overrides are s
403400<br/>
404401
405402[SQLite - Writes](https://github.com/DaredevilOSS/sqlc-gen-csharp/blob/main/benchmark/BenchmarkDotNet.Artifacts/sqlite/writes/results/BenchmarkRunner.Benchmarks.SqliteWriteBenchmark-report-github.md)
403+
406404# Contributing
407405# # Local plugin development
408406# ## Prerequisites
@@ -463,7 +461,8 @@ The new created tag will create a draft release with it, in the release there wi
463461```yaml
464462```
465463
466- </details >
464+ </details >
465+
467466<details >
468467<summary >QuickStartMySqlDalGen</summary >
469468
@@ -473,7 +472,8 @@ The new created tag will create a draft release with it, in the release there wi
473472``` yaml
474473```
475474
476- </details >
475+ </details >
476+
477477<details >
478478<summary >QuickStartSqliteDalGen</summary >
479479
@@ -483,7 +483,8 @@ The new created tag will create a draft release with it, in the release there wi
483483``` yaml
484484```
485485
486- </details >
486+ </details >
487+
487488<details >
488489<summary >Npgsql</summary >
489490
@@ -534,7 +535,8 @@ overrides:
534535 notNull : false
535536` ` `
536537
537- </details>
538+ </details>
539+
538540<details>
539541<summary>NpgsqlDapper</summary>
540542
@@ -585,7 +587,8 @@ overrides:
585587 notNull: false
586588` ` `
587589
588- </details>
590+ </details>
591+
589592<details>
590593<summary>NpgsqlLegacy</summary>
591594
@@ -636,7 +639,8 @@ overrides:
636639 notNull: false
637640` ` `
638641
639- </details>
642+ </details>
643+
640644<details>
641645<summary>NpgsqlDapperLegacy</summary>
642646
@@ -687,7 +691,8 @@ overrides:
687691 notNull: false
688692` ` `
689693
690- </details>
694+ </details>
695+
691696<details>
692697<summary>MySqlConnector</summary>
693698
@@ -722,7 +727,8 @@ overrides:
722727 notNull: false
723728` ` `
724729
725- </details>
730+ </details>
731+
726732<details>
727733<summary>MySqlConnectorDapper</summary>
728734
@@ -757,7 +763,8 @@ overrides:
757763 notNull: false
758764` ` `
759765
760- </details>
766+ </details>
767+
761768<details>
762769<summary>MySqlConnectorLegacy</summary>
763770
@@ -792,7 +799,8 @@ overrides:
792799 notNull: false
793800` ` `
794801
795- </details>
802+ </details>
803+
796804<details>
797805<summary>MySqlConnectorDapperLegacy</summary>
798806
@@ -827,7 +835,8 @@ overrides:
827835 notNull: false
828836` ` `
829837
830- </details>
838+ </details>
839+
831840<details>
832841<summary>Sqlite</summary>
833842
@@ -869,7 +878,8 @@ overrides:
869878 type: "Instant"
870879` ` `
871880
872- </details>
881+ </details>
882+
873883<details>
874884<summary>SqliteDapper</summary>
875885
@@ -911,7 +921,8 @@ overrides:
911921 type: "Instant"
912922` ` `
913923
914- </details>
924+ </details>
925+
915926<details>
916927<summary>SqliteLegacy</summary>
917928
@@ -953,7 +964,8 @@ overrides:
953964 type: "Instant"
954965` ` `
955966
956- </details>
967+ </details>
968+
957969<details>
958970<summary>SqliteDapperLegacy</summary>
959971
@@ -995,40 +1007,8 @@ overrides:
9951007 type: "Instant"
9961008` ` `
9971009
998- </details>
999- <details>
1000- <summary>benchmark/PostgresqlSqlcImpl</summary>
1001-
1002- # # Engine `postgresql`: [benchmark/PostgresqlSqlcImpl](benchmark/PostgresqlSqlcImpl)
1003- # ## [Schema](examples/config/postgresql/benchmark/schema.sql) | [Queries](examples/config/postgresql/benchmark/query.sql) | [End2End Test](end2end/EndToEndTests/benchmark/PostgresqlSqlcImpl.cs)
1004- # ## Config
1005- ` ` ` yaml
1006- namespaceName: PostgresSqlcImpl
1007- ` ` `
1008-
1009- </details>
1010- <details>
1011- <summary>benchmark/SqliteSqlcImpl</summary>
1012-
1013- # # Engine `sqlite`: [benchmark/SqliteSqlcImpl](benchmark/SqliteSqlcImpl)
1014- # ## [Schema](examples/config/sqlite/benchmark/schema.sql) | [Queries](examples/config/sqlite/benchmark/query.sql) | [End2End Test](end2end/EndToEndTests/benchmark/SqliteSqlcImpl.cs)
1015- # ## Config
1016- ` ` ` yaml
1017- namespaceName: SqliteSqlcImpl
1018- ` ` `
1019-
1020- </details>
1021- <details>
1022- <summary>benchmark/MysqlSqlcImpl</summary>
1023-
1024- # # Engine `mysql`: [benchmark/MysqlSqlcImpl](benchmark/MysqlSqlcImpl)
1025- # ## [Schema](examples/config/mysql/benchmark/schema.sql) | [Queries](examples/config/mysql/benchmark/query.sql) | [End2End Test](end2end/EndToEndTests/benchmark/MysqlSqlcImpl.cs)
1026- # ## Config
1027- ` ` ` yaml
1028- namespaceName: MysqlSqlcImpl
1029- ` ` `
1030-
1031- </details># Examples
1010+ </details>
1011+ # Examples
10321012<details>
10331013<summary>QuickStartPostgresDalGen</summary>
10341014
0 commit comments