Skip to content

Commit 20e113b

Browse files
committed
Adding ramsql
1 parent db6e316 commit 20e113b

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ additional aliases, and the related Go driver:
144144
| Netezza | `netezza` | `nz`, `nzgo` | [github.com/IBM/nzgo/v12][d-netezza] |
145145
| PostgreSQL PGX | `pgx` | `px` | [github.com/jackc/pgx/v5/stdlib][d-pgx] |
146146
| Presto | `presto` | `pr`, `prs`, `prestos`, `prestodb`, `prestodbs` | [github.com/prestodb/presto-go-client/presto][d-presto] |
147+
| RamSQL | `ramsql` | `rm`, `ram` | [github.com/proullon/ramsql/driver][d-ramsql] |
147148
| SAP ASE | `sapase` | `ax`, `ase`, `tds` | [github.com/thda/tds][d-sapase] |
148149
| SAP HANA | `saphana` | `sa`, `sap`, `hana`, `hdb` | [github.com/SAP/go-hdb/driver][d-saphana] |
149150
| Snowflake | `snowflake` | `sf` | [github.com/snowflakedb/gosnowflake][d-snowflake] |
@@ -198,6 +199,7 @@ additional aliases, and the related Go driver:
198199
[d-postgres]: https://github.com/lib/pq
199200
[d-presto]: https://github.com/prestodb/presto-go-client
200201
[d-ql]: https://gitlab.com/cznic/ql
202+
[d-ramsql]: https://github.com/proullon/ramsql
201203
[d-sapase]: https://github.com/thda/tds
202204
[d-saphana]: https://github.com/SAP/go-hdb
203205
[d-snowflake]: https://github.com/snowflakedb/gosnowflake

scheme.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -308,6 +308,12 @@ func BaseSchemes() []Scheme {
308308
[]string{"ql", "cznic", "cznicql"},
309309
"",
310310
},
311+
{
312+
"ramsql",
313+
GenFromURL("truncate://ramsql"), 0, false,
314+
[]string{"rm", "ram"},
315+
"",
316+
},
311317
{
312318
"snowflake",
313319
GenSnowflake, 0, false,

0 commit comments

Comments
 (0)