Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Lianjia Beike Spider | 1,695 | 4 years ago | 6 | Python | ||||||
链家网和贝壳网房价爬虫,采集北京上海广州深圳等21个中国主要城市的房价数据(小区,二手房,出租房,新房),稳定可靠快速!支持csv,MySQL, MongoDB,Excel, json存储,支持Python2和3,图表展示数据,注释丰富 🚁,点星支持 | ||||||||||
Wooyun_search | 334 | 5 years ago | 4 | PHP | ||||||
乌云公开漏洞、知识库搜索 search from wooyun.org | ||||||||||
Fluxcp | 145 | 12 days ago | 41 | lgpl-3.0 | PHP | |||||
A web-based Control Panel for rAthena servers written in PHP. Manage player accounts, databases, support tickets, etc via your browser. | ||||||||||
Rust_mysql_common | 86 | 51 | 14 | 18 days ago | 51 | July 27, 2022 | 9 | apache-2.0 | Rust | |
Common primitives of MySql protocol. | ||||||||||
Shw_server | 70 | 2 years ago | apache-2.0 | Java | ||||||
使用SpringCloud和Spring WebFlux开发的学生作业管理系统服务端,前后端分离项目,微服务架构。支持Docker集群化部署,Redis集群化缓存,文件在线预览 压缩包预览 打包上传下载 | ||||||||||
Tkbaruphp | 51 | 5 years ago | 3 | HTML | ||||||
TKBARU - PHP POS System | ||||||||||
Kite Mybatis Builder | 48 | 5 years ago | Java | |||||||
web 形式的mybatis 生成器 | ||||||||||
Mysqldoctrinefunctions | 46 | 5 | 1 | 4 years ago | 7 | August 15, 2015 | 1 | other | PHP | |
MySQL Function for Doctrine : RAND(), ROUND() DATE(), DATE_FORMAT() | ||||||||||
Dynamic Add Date | 46 | 2 years ago | 6 | July 06, 2019 | mit | Java | ||||
一款基于MyBatis框架,可以对插入和更新Sql语句动态地添加日期列和对应值的插件 | ||||||||||
Sql2json | 37 | 3 years ago | 11 | May 25, 2020 | Python | |||||
Python tool to run a query and convert result to json, csv, excel in the command line or python program |
Version 0.1 Date 09.04.2004 Initial Release
################################################ Version 0.1.1 Date 15.04.2004
Added two function char[][] mysql_fetch_array(MYSQL_RES *result) example: char[][] values; while ( (values = mysql_fetch_array(result)) != null) { foreach (char wert[]; values) { printf("wert = %.*s\n",wert); } }
char[][char[]] mysql_fetch_hash(MYSQL_RES *result) example: char[][char[]] hash; while ((hash = mysql_fetch_hash(result)) != null) { foreach ( char [] key; hash.keys.sort ){ printf("%.*s = %.*s\n",key,hash[key]); } }
################################################
Version 0.1.2 Date 23.04.2004 Rename the function mysql_fetch_hash to mysql_fetch_assoc
################################################
Version 0.1.3 Date 02.07.2004 Change the propertie .size to .sizeof, to compile with dmd 0.94 . Thanks to Thomas Kühne
################################################
Version 0.1.4 Date 15.03.2005 Add function mysql_escape in mysql.d modul. An example is in example/mysql_test.d Tested with MySql 4.0.x and 4.1.x under dmd 0.118 and gdc 0.10
################################################
Version 0.1.7 Date 14.12.2006 Bug fix in an example File. Tested with dmd 0.177 and gdc 0.19
################################################
Version 0.1.8 Date 10.01.2007 Link the mysql as shared Library See example mysql_shared.d Tested with dmd 1.0 and gdc 0.21
For Windows Users coffimplib libmysql.lib -f
##################################################
Version 0.1.9 Date 08.01.2008 Ported for dmd 2.009 and gdc 0.2.4 configured with --d-language-version=2 . For dmd 1.x, use Version 0.1.8
##################################################
Version 0.2.0 Date 11.01.2008 New mysql_wrapper file with new function:
##################################################
Version 0.2.2 Date 08.02.2008 Resolved memeory leak in function mysql_fetch_array() and mysql_fetch_assoc()
##################################################
Version 0.2.3 Date 01.05.2011, Timofei Bolshakov
Adjusted to work with dmd v2.051: in mysql.d inout is substituted to ref in parameter lists of 3 functions hash key (name) converted to string using to!string from std.conv to!string used instead of toString in mysql_wrapper.d to!string used instead of toString in h3n.d endless loop is commented out, h3n used as test
Compilation: dmd -c -d mysql.d dmd -c -d mysql_wrapper.d dmd h3n.d -d -Lmysql.o -Lmysql_wrapper.o -L/usr/lib/libmysqlclient.a
If dgc is properly made to implement D ver. 2 ( https://bitbucket.org/goshawk/gdc/wiki/Home#installation ) then everything works with gdc 2 dmd options translator:
gdmd -c -d mysql.d
gdmd -c -d mysql_wrapper.d
gdmd h3n.d -d -Lmysql.o -Lmysql_wrapper.o -L/usr/lib/libmysqlclient.a