Update mysql

This commit is contained in:
sunkaixuan
2022-03-11 14:18:06 +08:00
parent ba85039b2b
commit d013737c87

View File

@@ -128,6 +128,14 @@ namespace SqlSugar.MySqlConnector
return Convert.ToInt64(value); return Convert.ToInt64(value);
} }
} }
else if (type == UtilConstants.LongType)
{
return GetString(value);
}
else if (type == UtilConstants.IntType)
{
return GetString(value);
}
else if (type == UtilConstants.BoolType) else if (type == UtilConstants.BoolType)
{ {
return value.ObjToBool() ? "1" : "0"; return value.ObjToBool() ? "1" : "0";