Skip to content

v0.9.5

Compare
Choose a tag to compare
@github-actions github-actions released this 12 Aug 10:32
· 2287 commits to main since this release
b1aade5

SQLPage is a web application server that empowers you to effortlessly construct small dynamic web applications solely using SQL queries, freeing you from the complexities of traditional web programming. By combining the power of SQL queries with pre-built web components, you can create powerful and visually appealing web interfaces without the need for HTML, CSS, or JavaScript.


SQLPage Release Notes - Version 0.9.5 🚀

New Features

📑 New tab Component for Tabbed Interfaces

Now you can enhance your web applications with tabbed interfaces using the brand new tab component. With just a few lines of SQL, you can create organized and user-friendly tab-based navigation, allowing users to access different sections of your application with ease. Check out the documentation to learn more about using the tab component.

Example:

select 'tab' as component;
select  'Buyers'  as title, $tab='Buyers'  as active;
select  'Sellers' as title, $tab='Sellers' as active;

select  'table' as component;
select * from buyers  where $tab='Buyers';
select * from sellers where $tab='Sellers';

🛠️ Database Driver Improvements

Version 0.9.5 comes with significant enhancements in database drivers, ensuring better performance and improved numeric precision. Several bug fixes have been implemented, particularly around passing values of the NUMERIC, DECIMAL, and JSON data types to SQLPage. These improvements enhance the overall reliability and accuracy of your web applications.

See this discussion about the usage of the JSON data type in SQLPage.

New Data Types

  • DECIMAL allows you to precisely manage financial and numeric values, ensuring accurate calculations.
  • JSON, on the other hand, enables structured and flexible data storage.

Upgrade and Enhance

With SQLPage 0.9.5, you can further elevate your web application development experience. Embrace the new tab component to create engaging interfaces and leverage the enhanced database drivers for better performance and data manipulation. The inclusion of DECIMAL and JSON data types opens up new possibilities for sophisticated applications.

Upgrade to version 0.9.5 now and unlock the full potential of SQL-driven web application development!

Get Started with SQLPage | GitHub Repository

We're committed to improving your web development journey, one SQL query at a time. Happy coding! 💻🌐

Full Changelog