Skip to content

Commit 6cbccf0

Browse files
committed
2 parents 6ec3a13 + 4e26a25 commit 6cbccf0

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
MySQL.jl
22
======
33

4-
Julia bindings and helper functions for [MariaDB](https://mariadb.org/)/MySQL C library.
4+
Julia bindings and helper functions for [MariaDB](https://mariadb.org/)/MySQL C library.
55
Query results can be recieved as raw C pointers or as [Data Frames](https://github.com/JuliaStats/DataFrames.jl).
66

77
# Installation
@@ -58,8 +58,8 @@ MySQL.disconnect(con)
5858
# How to solve MySQL library not found error
5959

6060
This error may occur during `using MySQL`. To resolve this-
61-
* Ubuntu: Just add the MariaDB/MySQL .so file to lib_choices array in src/config.jl. If it is already there
62-
make sure LD_LIBRARY_PATH contains the MariaDB/MySQL .so file directory path. Usually this is something like
61+
* Ubuntu: Just add the MariaDB/MySQL .so file to lib_choices array in src/config.jl. If it is already there
62+
make sure LD_LIBRARY_PATH contains the MariaDB/MySQL .so file directory path. Usually this is something like
6363
`/usr/local/lib/mariadb/`.
6464
* OSX: Same as above. In this case the file will be something like libmysqlclient.dylib.
6565
* Windows: There is no `@windows_only lib_choices` currently. Please add one and send a pull request.
@@ -73,4 +73,4 @@ A total of 67,000 insert queries were executed batch wise in batch sizes of 50,
7373

7474
# Acknowledgement
7575

76-
The generous inputs and help from Just Dial ™, Bangalore is greatly appreciated.
76+
We acknowledge the contributions of [JustDial](http://www.justdial.com) towards this work.

src/dfconvert.jl

-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,6 @@ function populateRow(numFields::Int8, fieldTypes::Array{Uint32}, df, row, juBind
181181
end
182182
end
183183
df[row, i] = value
184-
println("The value set in df is ::: $(df[row, i])")
185184
end
186185
end
187186

0 commit comments

Comments
 (0)