Browse Source

added blob support

Nicolas Cannasse 14 năm trước cách đây
mục cha
commit
e02c71c56f
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      std/php/_std/sys/db/Mysql.hx

+ 2 - 0
std/php/_std/sys/db/Mysql.hx

@@ -136,6 +136,8 @@ private class MysqlResultSet implements ResultSet {
 				return untyped __call__("floatval", v);
 				return untyped __call__("floatval", v);
 			case "datetime", "date":
 			case "datetime", "date":
 				return Date.fromString(v);
 				return Date.fromString(v);
+			case "blob":
+				return haxe.io.Bytes.ofData(v);
 			default:
 			default:
 				return v;
 				return v;
 		}
 		}