Re: Matematica Beginner/Student and Mysql
- To: mathgroup at smc.vnet.net
- Subject: [mg122455] Re: Matematica Beginner/Student and Mysql
- From: Michael Stern <nycstern at gmail.com>
- Date: Sat, 29 Oct 2011 07:09:45 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- References: <201110280935.FAA20781@smc.vnet.net>
Mathematica and MySQL work together beautifully. My connections look
like this:
Needs["DatabaseLink`"];
jpDB = OpenSQLConnection[
JDBC["MySQL(Connector/J)", "localhost:3306/whateverdb"],
Username -> "whatevername", Password -> "whateverpass"];
SQLConnections[]
(* just to check that I have a good connection. If I do, it responds
with something like "{SQLConnection[1, "Open", "Catalog" -> "whateverdb",
"TransactionIsolationLevel" -> "RepeatableRead"]}" *)
I generally design the tables with MySQL Workbench, and then use
SQLInsert or SQLExecute to add data, and SQLSelect or SQLExecute to
retrieve it. I'm not sure a detailed example would help much, as it
would depend on the structure of your database, which is surely
different from mine.
Good luck,
Michael
On 10/28/2011 5:35 AM, ejules wrote:
> Hello Everybody.. I hope this is the right place to post...
>
> I'm student and currently trying to connect a mysql database running
> locally on 127.0.0.1:3306 localhost, including the database
> Testdatabase with table Testtable.
> I try now to connect with Mathematica:
>
> Needs["DatabaseLink`"];
> SqlConnection[
> JDBC["MySQL(Connector/J)", "localhost:3306/testdatabase"],
> "Name" -> "TestDB", "Username" -> "root", "Password" -> ""]
> conn1 = OpensqlConnection["TestDB"]
> SQLTableNames[conn1]
>
> Unfortunately my Ouptut is only a echo of what i wrote but not the
> result i'm looking for
> afterwards i would like to send standard sql queries to retrieve
> data...
> Anyone could help me? Step by step? I never used Mathematica before,
> but as my datasets are pretty large and manipulating data in tables is
> very convienient, i would really appreciate any help..
>
> Thank you! ejules
>
>
- References:
- Matematica Beginner/Student and Mysql
- From: ejules <weberejules@gmail.com>
- Matematica Beginner/Student and Mysql