hunt-database icon indicating copy to clipboard operation
hunt-database copied to clipboard

Database abstraction layer library using pure D programing language, support PostgreSQL and MySQL.

Results 21 hunt-database issues
Sort by recently updated
recently updated
newest added

Hi All, The below code is taken from the example provided in here, this code works, but the connection is not getting closed , "db.close" is not getting executed, and...

Hi, First of all, thanks for great [hunt-framework](https://github.com/huntlabs/hunt-framework) product, that looks good and easy to start. Below is description of bug that i have spotted recently, when i tried to...

Hi All, Request your help as the below code is failing when executed in parallel **Program Code** ``` @trusted public auto getconf(immutable string account) { string result; auto account =...

Hi All, The below code always returns value 2(result = stmt.execute()) but the data in the tables are getting inserted/ updated perfectly, so shoudnt the below code return the value...

Hi All, We are getting the error message "Program exited with code -11" out of 10 executions we get this error 2 time's not sure what or where is the...

问题方法:private string sql(SqlConnection conn) 重现代码: auto db = new Database("mysql://root:root@localhost:3306/asp?charset=utf8mb4"); auto conn = db.getConnection(); Statement stmt = db.prepare(conn, "SELECT * FROM sys_user where Name = :username "); //下面一行会发生错误:username后缺少空格会导致参数无法被替换导致SQL错误 //Statement stmt...