feat(interfaces): add IDbStatusResult interface

A new interface, `IDbStatusResult`, has been added to the 'interfaces' scope. This interface includes details about database operations such as field count, affected rows, insert id, info, server status, warning status, and changed rows.

Signed-off-by: Mathis <yidhra@tuta.io>
This commit is contained in:
Mathis H (Avnyr) 2024-04-26 11:18:41 +02:00
parent adaf4e30db
commit 61c546459a
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -0,0 +1,9 @@
export interface IDbStatusResult {
fieldCount: number;
affectedRows: number;
insertId: number;
info: string;
serverStatus: number;
warningStatus: number;
changedRows: number;
}