temp fix for null in new system

This commit is contained in:
Adam D. Ruppe 2023-10-04 09:27:41 -04:00
parent bed2e2446a
commit c4eb32c913
1 changed files with 4 additions and 3 deletions

View File

@ -437,14 +437,15 @@ private void populateFromDbRow(T)(ref T t, Row record) {
} }
} }
private void populateFromDbVal(V)(ref V val, string value) { private void populateFromDbVal(V)(ref V val, string /*DatabaseDatum*/ value) {
import std.conv; import std.conv;
static if(is(V == Constraint!constraintSql, string constraintSql)) { static if(is(V == Constraint!constraintSql, string constraintSql)) {
} else static if(is(V == Nullable!P, P)) { } else static if(is(V == Nullable!P, P)) {
// FIXME // FIXME
if(value.length && value != "null") { if(value.length && value != "null" && value != "<null>") {
val.isNull = false; val.isNull = false;
import std.stdio; writeln(value);
val.value = to!P(value); val.value = to!P(value);
} }
} else static if(is(V == bool)) { } else static if(is(V == bool)) {
@ -471,7 +472,7 @@ unittest
auto rs = new PredefinedResultSet( auto rs = new PredefinedResultSet(
[ "a", "b" ], [ "a", "b" ],
[ Row([ "1", "2" ]) ] [ Row([ DatabaseDatum("1"), DatabaseDatum("2") ]) ]
); );
SomeStruct s; SomeStruct s;