mysql_insert(host; user; pw; database; sql; path)
Rate this function: Average rating: 3.9 (7 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. |
webviewer_button ( content; textCol; bgCol ) |
| |
(Wed, Mar 03, 11:18am) |
| 2. |
RemoveCommonValues ( Array ; ComparisonArray ) |
| |
(Wed, Feb 24, 9:39pm) |
| 3. |
DistanceGeoCoord ( Lat1deg ; Lat1mm ; Lat1ss ; Lon1deg ; Lon1mm ; Lon1ss ; Lat2deg ; Lat2mm ; Lat2ss ; Lon2deg ; Lon2mm ; Lon2ss ; U ; Version ) |
| |
(Wed, Feb 24, 2:20pm) |
| 4. |
fnGoogleLineChart ( chtitle ; xtitle ; ytitle ; xfield ; yfield ; color ) |
| |
(Tue, Feb 23, 1:30pm) |
| 5. |
StringConstruct ( text ; prefix ; suffix ; altText ) |
| |
(Fri, Feb 19, 10:57am) |
| 6. |
ShowValueCascade ( fields ; altText ) |
| |
(Fri, Feb 19, 10:44am) |
| 7. |
ShowValue ( text; altText ) |
| |
(Fri, Feb 19, 10:28am) |
| 8. |
timeFormat ( thetime ; leader ) |
| |
(Wed, Feb 17, 7:44pm) |
 |
|