feat(db): Add PostgreSQL query creator implementation
Implements a query creator for PostgreSQL, allowing for proper database type mapping and table creation functionalities. Enhances the library's database support by incorporating PostgreSQL-specific features such as SERIAL/BIGSERIAL for auto-increment columns and improved escape handling for table names. Improves the extensibility and compatibility of the database framework with different SQL databases.
This commit is contained in:
parent
8a75b1fdc5
commit
f28f1bf536
3 changed files with 91 additions and 0 deletions
|
|
@ -24,6 +24,7 @@ using System.Globalization;
|
|||
using System.Linq;
|
||||
using MySql.Data.MySqlClient;
|
||||
using TShockAPI.DB;
|
||||
using TShockAPI.DB.Queries;
|
||||
|
||||
namespace TShockAPI
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue