mysql_insert(host; user; pw; database; sql; path)
Rate this function: Average rating: 3.9 (9 votes) Discuss this Custom Function
Jim McNeely, Northwest Radiologists
http://nwrads.com
creates the text of an applescript which creates a php script which runs a SQL command into a MySQL database
Sample Input:
| mysql_insert("10.0.1.4"; "user"; "pw"; "database"; "insert into blappo (test) values('flying pony"); "~/Documents") |
|
Sample Output:
| do shell script ("echo \"#!/usr/bin/php -q\" > ~/Documents/push_to_mysql.php; echo \"<?php\" >> ~/Documents/push_to_mysql.php; echo \"\\$link = mysql_connect(\\\"10.0.1.4\\\",\\\"user\\\",\\\"pw\\\") or die(\\\"I'm sorry Dave, I can't do that. Could not connect: \\\".mysql_error());\" >> ~/Documents/push_to_mysql.php; echo \"mysql_select_db(\\\"database\\\") or die(\\\"I'm sorry Dave, I can't do that. Could not select database as database\\\");\" >> ~/Documents/push_to_mysql.php; echo \"\\$query = \\\"insert into blappo (test) values('flying pony')\\\";\" >> ~/Documents/push_to_mysql.php; echo \"\\$result = mysql_query(\\$query) or die(\\\"I'm sorry Dave, I can't do that. Query failed: \\\" . mysql_error());\" >> ~/Documents/push_to_mysql.php; echo \"echo \\\"Success\\\";\" >> ~/Documents/push_to_mysql.php; echo \"?>\" >> ~/Documents/push_to_mysql.php; chmod 777 ~/Documents/push_to_mysql.php; echo `php ~/Documents/push_to_mysql.php`; rm ~/Documents/push_to_mysql.php") |
|
Description:
Obviously, this only works on OS X. PHP is installed by default on Mac OS 10.4 and 10.5, even though it is not enabled by default for Apache. A script that uses this will thus run with no further additions to the machine.
So, you set a field or variable to the results of this
host: the ip address of the MySQL database
user: login user
pw: login pw
database: the database (not table) that you want to connect to
sql: the sql statement you wat to run
path: the path of the php file that will be created.
I use this because I have found ESS to be crappy and until they fix things this really works well.
Note: these functions are not guaranteed
or supported by BrianDunning.com. Please contact the individual
developer with any questions or problems.
This is my Custom Function and I want to
edit it
Discuss:There are no comments yet. Be the first to post a comment about this Custom Function! Please try to keep it brief & to the point. Anyone can post:
|
Newest Custom Functions:
| 1. |
GetResultParameter( ParameterName ) |
| |
(Wed, Aug 25, 8:32am) |
| 2. |
GetListParameter ( ParameterList ; ParameterName ) |
| |
(Wed, Aug 25, 8:25am) |
| 3. |
Standard_Deviation( Field ; MaxLoopCount ; StartIndex ; StdDeviation ; ArithMeanValue ) |
| |
(Tue, Aug 24, 10:57am) |
| 4. |
Arithmetic_Mean ( Field ; MaxLoopCount ; StartIndex ; MeanValue ) |
| |
(Tue, Aug 24, 10:51am) |
| 5. |
Age ( Birth; theDate; Format ) |
| |
(Fri, Aug 20, 9:50am) |
| 6. |
Power ( x ; y ) |
| |
(Thu, Aug 19, 5:56am) |
| 7. |
portal.rowCount ( _name ) |
| |
(Sun, Aug 15, 2:41pm) |
| 8. |
PostPer_Day ( Post; startDate ; finishDate ; returnType ) |
| |
(Sat, Aug 14, 2:02pm) |
 |
|