nothing really

This commit is contained in:
Adam D. Ruppe 2023-01-31 20:30:14 -05:00
parent ce362a5854
commit 90e2f97726
1 changed files with 24 additions and 0 deletions

View File

@ -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;