YEP, IT'S MYSQL And there are ways to do things outside of the framework.
For instance, I wanted to run Google Charts API using gauges for some solar power and sensor projects I want to do. Couldn't make it work (easily) within the framework, so I created a folder, did my coding and then display the chart within a "widget" As an example, take a look at the right hand sidebar, downtowards the bottom and you will see two charts in a widget titled "Our off-grid gauges" The code within the widget follows === <iframe src="http://keepamericaatwork.com/vjb_chart_test_2" ></iframe> <hr> <a href="http://keepamericaatwork.com/?page_id=223249">Click Here </a> to view Zone 1 <hr> <font color="red">Under Construction - Updated 4 Oct 13</font> <hr> <iframe src="http://keepamericaatwork.com/vjb_zone1_line" ></iframe> <hr> If you will <a href="http://keepamericaatwork.com/category/101-old-goat-lane/">click here</a>, you will see the things that I want to do to go totally off-grid. <hr> === If you run it stand alone outside of wordpress, you get the following http://keepamericaatwork.com/vjb_chart_test_2 If you do a "view source", you get straight forward code that is simple to implement <html> <head> <script type='text/javascript' src='https://www.google.com/jsapi'></script> <script type='text/javascript'> google.load('visualization', '1', {packages:['gauge']}); google.setOnLoadCallback(drawChart); function drawChart() { var data = google.visualization.arrayToDataTable([ ['Label', 'Value'], ['VOLTS', 14.7], ['AMPS', 5.3] ]); var options = { max: 25, width: 275, height: 275, redFrom: 20, redTo: 25, yellowFrom:15, yellowTo: 20, greenFrom:10.5, greenTo:15, minorTicks: 5 }; var chart = new google.visualization.Gauge(document.getElementById('chart_div')); chart.draw(data, options); } </script> </head> <body> <div id='chart_div'></div> </body> </html> === I just haven't had money available to buy the solar stuff, arduino, and raspberry pi's that I want to use to implement it with. Hell, I don't even have electricity or heat yet <grin> -----Original Message----- From: ProFox [mailto:[email protected]] On Behalf Of Allen Sent: Tuesday, November 26, 2013 2:08 PM To: [email protected] Subject: RE: VFP9 I will bookmark that for further reading. It says it has a database. Could that be used by c# (.net). I really hate the problems of SQL server. Al -----Original Message----- From: ProfoxTech [mailto:[email protected]] On Behalf Of Virgil Bierschwale Sent: 26 November 2013 20:44 To: [email protected] Subject: RE: VFP9 So did I in the beginning [excessive quoting removed by server] _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://mail.leafe.com/mailman/listinfo/profox OT-free version of this list: http://mail.leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com/archives/search/profox This message: http://leafe.com/archives/byMID/profox/[email protected] ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

