HaxeFoundation / HaxeFoundation/haxe
[hl][mysql] sys.db.Connection close function not work on linux.
- Dominant language
- Haxe
- Stars
- 6.9k
- Forks
- 715
- Avg merge
- 2d 2h
- Merged PRs (30d)
- 11
Description
class Main {
static function main() {
var cnx = sys.db.Mysql.connect({
host : "127.0.0.1",
port : 33826,
user : "test",
pass : "test",
database : "test"
});
var rs= cnx.request('select * from fa_customer');
trace(rs.length);
cnx.close();//work ok on windows.but fail on ubuntu 18.
}
}


**hxcpp** test ok

Contributor guide
Assessment
This issue has not been assessed yet.