From 90e2f97726a4abbb7c624236272475aa28e65f23 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Tue, 31 Jan 2023 20:30:14 -0500 Subject: [PATCH] nothing really --- database.d | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/database.d b/database.d index 16f787d..5984ab6 100644 --- a/database.d +++ b/database.d @@ -138,6 +138,30 @@ struct Query { } } +/+ +struct DatabaseDatum { + int tag; + union { + string text; + immutable(ubyte)[] blob; + int number; + double floating; + } + + bool isNull() { + return true; + } + + string toString() { + return null; + } + /++ + For compatibility with earlier versions of the api, all data can easily convert to string implicitly. + +/ + alias toString this; +} ++/ + struct Row { package string[] row; package ResultSet resultSet;