Kristopher
Kristopher
I just came across [this project](https://github.com/maxpert/marmot/blob/master/stream/embedded_nats.go) which seems to be using an embedded nats server for data replication. They are also setting a cluster, so will learn if there is...
> There are many examples on our tests for the server. I will have to look through those, as from my own example I was having issues. It does seem...
I am unsure what the status is with v2 so I understand that it's still unstable and subject to changes. I am however finding in comparison to v1 that I...
I've just stumbled on an error when trying to use Jetstream using this repo & wondering if this issue is related to it? https://community.fly.io/t/global-cluster-error-jetstream-temporarily-unavailable/11713?u=adoublef
I looked a little deeper into the query and ran the `rowFromSql` method inside a [TypeScript Playground](https://www.typescriptlang.org/play?target=9#code/MYewdgziA2CmB0w4EMBOAKAlAKGwSzABdZUAzZYWAAgCUQB3Kgb2yraoHoAqLqgOQCuAWwBGJKiFJVQ0YZCoEqhABZ4IVVA3it2VLjva8AgtGgaG6xeGpMAAtAIBrWrAgDohAMqxCAXyrKyABu1CrUEMhC1GDCYqhUyGAAJlRgka4SUjJyENq6ehwGVHBgAOYqAFypsSQA3Li63LwAwjA50olUYgnAlBAQsCkOjtSdaKjIAJ5d0zFRqHjACsmwAB6u8AVFANoESWtVc3EAulUAasiysPVFTVStskLywJ3dFH0DQ3gjCWASIgArWDAQgzaRtJ6pdK5La6bZpKJVCCEBZlU5UC5Xeq+XCESYAB2omIE1AAvEUAD7VUyUqjI1GlWlHEi0kR4UoEQi0oyoCaTABCAlIpBZ2FIAjAILw4HM9AAYpohJ4AI7QdAQVV0ehVHl8gA8EscYAYYAAfAAacGPSA63lTPX0gilU2YKpa5hFUCQUGaRik5i+eqNDhUITIH5uVChQKgsJUABEJXKynjVHxmkJqDxCnUxtBsDmJGQIjgRQA8oDgYR4PtSARYAAFDMkPHoX2WxMF5Pxy1MKhBS4kpGarRJlRUXyYIPsUggeLoOCgvBUf0ABlqCioerpI-o8DHyg3AGoj3hMB78uwvcj+4OyTvoFrdsdp5eK0CQTXYHWwI3m1nJjbBhLTwXtbyuCcpwaS9wW9K05BXeCnggZ9X3yPApHQABCd8q3gQIIDLegwCA+hLWyJ5MHPFgYPyXDP1resmxATNW3bJCwDAgcrktAthCLEtYCqFESUgtDdBxCSiijQgBFQP5fQSdQtWxXBrx9BhEN9BUQCVVV0G2eNVh7BNJhMgBGS0RNgY5LUM5ATPjERHOARyknjY4cGwa8YAQaAQFKUjMCAA) with `target es2022` on `v5.2.2` and its returning as an object.
I have an example of the code using [Symbol.Iterator](https://www.typescriptlang.org/play?ts=4.0.5#code/MYewdgziA2CmB0w4EMBOAKAlAKGwMwFcxgAXAS3AAIA3ZaA2AMVRAFsBlAR2nQBNkSyAFyUiAazAgA7mAA0lMmBIBZEL1giwBVgCNYqTJQDe2SmcqpYJAqjCV+g7AF9cJAJ4AHWJQBK0ygC8xqbmANpgyKwalBAkqIoA5gC6IshgbgDcuOaUoexuujDwZCT6AiCoSVgiAJKlqMg6cHVlJBUAPGluAHxZLvhEpBR2LFLMbFw8ENx+UiIAgqgNbu3ikjLd8qD0rJALS8grsfFgCZsKSqrqqemYIrPBOaCQJBb+QUZOWTkA8joAVrBSPB1HhFLAAAosLyodzoUbyfKFaDFerlVDyIw0OgMESEYjkcAAKkoWGMlDcZFg0F4JL+gOBtHosAg6BIAAsyBBDE5KE5MN9zHgKqS4K8yIFKAAGDIKSjtGIzaTwOCnDmygDUGrIhhMOSe4Fi2OZkqZDHGHG46Gm0FmoTISXkihUalgApC+sozyN220diCvt2EHtSUFnvpQJIINgYLAkOh+jhCK9MD9mONDHksC0UQaTWicQYfPdORcOUs1lsbyklGQEF80j6uG9r1GktGFsm6FCACJGCAQD35AAmADs8h7ylQPcduR7ESiQ8oPeQCVgS57qoSHJn8ilOGw3pgCGgIAS8OkhgA9FfjAvon2B0vV9Ex-ItxyRJPpy4j3AVWe3bwMBoxJNet69v2g4juOy5TjOQA) I was pondering over this and feel that this could mean less of a change to the existing expectation of the...
The only difference is the removal of `better-sqlite3` dependency. Everything else is is designed the same. There are two Deno packages both can work but with caveats: - [Denodrivers](https://github.com/denodrivers/sqlite3) seem...
With regards to the second package they do have a private property [here](https://github.com/dyedgreen/deno-sqlite/blob/master/src/db.ts#L140) so may just be something I can ask the maintainers to expose. I also was not able...
@penberg great question. I would say the benefit most definitely comes from consistent API. Both current SQLite packages are incomplete, although if the [Dyedgreen's](https://github.com/dyedgreen/deno-sqlite) version would be the closest to...
EDIT: I asked the question in the discord and apparently this is true ``` As long as you do not call Deno.dlopen it should be fine, even if there's a...