Replies: 13 comments
-
Wow, that's a great list ! Would you be interested in me guiding you to making your first contributions to sqlpage ? |
Beta Was this translation helpful? Give feedback.
-
I'm setting up a cloned repo of SQLPage for myself very soon. Expect a few basic PR from me - mostly focusing on documentation first but maybe later a custom mermaid.js component or sample API calls. I consider myself more of a database guy with zero rust knowledge but I have a lot of system integration and architecture experience that might be helpful for your project. Also my wishlist is just a subjective list of one person - with priorities based on my own use-case scenarios. I hope that more users will come forward with their own list. Once there is enough data a proper development roadmap can be built by combining the most requested features. This also leads to another important point: Architecturally SQLPage is probably not in its final form. There are a few missing elements, such as include directives, that can be implemented many ways but needs to be decided to ensure consistency. |
Beta Was this translation helpful? Give feedback.
-
Several of these points have already come up in discussions with other users. The next big things on my list are OIDC authentication and multi database. For the latter, I'm still not sure how it should work... |
Beta Was this translation helpful? Give feedback.
-
Multi database is purposely not on my list - I think this is a problem that can be solved leveraging the capabilities of the database server and no need to overcomplicate SQLPage with an inferior workaround. I already have a working solution to pull PostgreSQL server data via my MSSQL. I'll try to remove the company specifics and turn it into a some sort of documentation for SQLPage. |
Beta Was this translation helpful? Give feedback.
-
Ideally, I'd like to find a good design that would allow implementing multi-database and dynamic user selection as a part of the same feature. |
Beta Was this translation helpful? Give feedback.
-
That would be great ! Any contribution, even small, to https://github.com/lovasoa/SQLpage/tree/main/examples is very welcome. |
Beta Was this translation helpful? Give feedback.
-
To tag on to this - is there a way for MSSQL to use windows authentication instead of passing a username/password? So any domain pre-authorized users can just open the pages and it works without using a specific username/password for the app |
Beta Was this translation helpful? Give feedback.
-
It might already do that and I just haven't seen how to do it :) I've tried looking though I swear 😁 Also - love SQLPage! perfect for me 😄 |
Beta Was this translation helpful? Give feedback.
-
Could the CLI be more classical with options, instead of defaulting to starting the HTTP server? Could you display the full urls like does miniserve (for instance) ?
|
Beta Was this translation helpful? Give feedback.
-
About pagination, I answered here: #84 |
Beta Was this translation helpful? Give feedback.
-
I'm moving this to a discussion, but keeping track of it ! |
Beta Was this translation helpful? Give feedback.
-
v0.12 beta is being released, with cross-database support for variables, which opens the door to many interesting new usecases ! SQLPage custom functions used to be limited to very particular cases, since they could take only sqlpage GET and POST variables, and not random sql expressions as arguments. Variables change that, and allow using data from the database as function inputs. SET myvar = (SELECT x FROM y);
SELECT sqlpage.myfunc($myvar); This unlocks creating new functions such as |
Beta Was this translation helpful? Give feedback.
-
I have started work on TLS support for Microsoft SQL server connections: lovasoa/sqlx-oldapi#8 |
Beta Was this translation helpful? Give feedback.
-
Here is my list of possible enhancements and features that I would love to see in SQLPage
(in no particular order)
(currently works with NSSP but would be nice not to use it)
(HMAC signing the request ?)
(Can be optionally turned on/off - default is off)
(Optional. default must be off)
Beta Was this translation helpful? Give feedback.
All reactions