-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
100 lines (75 loc) · 2.51 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
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:
- mysql_connect_d
- mysql_query_d
##################################################
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 intead of toString
in mysql_wrapper.d
to!string used intead 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