Skip to content

Commit 46be3af

Browse files
author
Philio
committed
merge dev->master
2 parents ef53a0f + 14ae027 commit 46be3af

25 files changed

+4120
-3486
lines changed

Examples/makefile

Lines changed: 0 additions & 23 deletions
This file was deleted.

Examples/query.go

Lines changed: 0 additions & 69 deletions
This file was deleted.

Examples/reconnect.go

Lines changed: 0 additions & 77 deletions
This file was deleted.

Examples/statement.go

Lines changed: 0 additions & 85 deletions
This file was deleted.

LICENSE

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Copyright (c) 2010/2011, Phil Bayfield "Philio"
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are met:
6+
7+
* Redistributions of source code must retain the above copyright
8+
notice, this list of conditions and the following disclaimer.
9+
10+
* Redistributions in binary form must reproduce the above copyright
11+
notice, this list of conditions and the following disclaimer in the
12+
documentation and/or other materials provided with the distribution.
13+
14+
* Neither the name of Phil Bayfield nor the names of contributors may be
15+
used to endorse or promote products derived from this software without
16+
specific prior written permission.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21+
DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
22+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Makefile

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
include $(GOROOT)/src/Make.inc
22

33
TARG=mysql
4-
GOFILES=mysql.go mysql_const.go mysql_error.go mysql_packet.go mysql_result.go mysql_statement.go
4+
GOFILES=mysql.go\
5+
types.go\
6+
const.go\
7+
error.go\
8+
password.go\
9+
reader.go\
10+
writer.go\
11+
packet.go\
12+
convert.go\
13+
handler.go\
14+
result.go\
15+
statement.go
516

617
include $(GOROOT)/src/Make.pkg

0 commit comments

Comments
 (0)