I have gdal 1.3.1 on my desktop Win32 box and on a linux server.&nbsp; I am using a virtual datasource to connect to a MySQL database.&nbsp; <br><br>On my desktop, I can successfully get the layer from the database using the following .ovf file.&nbsp; 
<br><br>&lt;OGRVRTDataSource&gt;<br><br>&nbsp;&nbsp;&nbsp; &lt;OGRVRTLayer name=&quot;aqidata&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;SrcDataSource&gt;MYSQL:aqiTest,user=uuuu,password=pppp,host=<a href="http://10.4.5.100">10.4.5.100</a>,port=3306,tables=testdata&lt;/SrcDataSource&gt; 
<br>&nbsp;&nbsp;&nbsp; &lt;SrcLayer&gt;testdata&lt;/SrcLayer&gt; <br>&nbsp;&nbsp;&nbsp; &lt;GeometryType&gt;wkbPoint&lt;/GeometryType&gt;<br>&nbsp;&nbsp;&nbsp; &lt;GeometryField encoding=&quot;PointFromColumns&quot; x=&quot;x&quot; y=&quot;y&quot;/&gt; <br>&nbsp;&nbsp;&nbsp; &lt;/OGRVRTLayer&gt;
<br><br>&lt;/OGRVRTDataSource&gt; <br><br>Here is the returned data including the first two features:<br><br>C:\CFusionMX7\wwwroot\aqi&gt;ogrinfo newlocal.ovf -al<br>ERROR 4: Update access not supported for VRT datasources.
<br>Had to open data source read-only.<br>INFO: Open of `newlocal.ovf'<br>using driver `VRT' successful.<br><br>Layer name: aqidata<br>Geometry: Point<br>Feature Count: 9<br>Extent: (278128.625000, 4874412.500000) - (747461.095000
, 5317595.030000)<br>Layer SRS WKT:<br>(unknown)<br>areaID: String (10.0)<br>x: Real (0.0)<br>y: Real (0.0)<br>sampleValue: Integer (0.0)<br>OGRFeature(aqidata):0<br>&nbsp; areaID (String) = 2<br>&nbsp; x (Real) = 282951.219<br>&nbsp; y (Real) = 
5188779.5<br>&nbsp; sampleValue (Integer) = 20<br>&nbsp; POINT (282951.21899999998 5188779.5 0)<br><br>OGRFeature(aqidata):1<br>&nbsp; areaID (String) = 1<br>&nbsp; x (Real) = 407618.438<br>&nbsp; y (Real) = 5134528.5<br>&nbsp; sampleValue (Integer) = 20
<br>&nbsp; POINT (407618.43800000002 5134528.5 0)<br><br><br>I edit this file, changing only the user, password, and host to match the database user on the server, and it does not work with ogrinfo on the server.&nbsp; A little redundant, but here is the .ovf.
<br><br>&lt;OGRVRTDataSource&gt;<br><br>&nbsp;&nbsp;&nbsp; &lt;OGRVRTLayer name=&quot;aqidata&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;SrcDataSource&gt;MYSQL:aqiTest,user=uuu,password=pppp,host=<a href="http://192.168.1.100">192.168.1.100</a>,port=3306,tables=testdata&lt;/SrcDataSource&gt; 
<br>&nbsp;&nbsp;&nbsp; &lt;SrcLayer&gt;testdata&lt;/SrcLayer&gt; <br>&nbsp;&nbsp;&nbsp; &lt;GeometryType&gt;wkbPoint&lt;/GeometryType&gt;<br>&nbsp;&nbsp;&nbsp; &lt;GeometryField encoding=&quot;PointFromColumns&quot; x=&quot;x&quot; y=&quot;y&quot;/&gt; <br>&nbsp;&nbsp;&nbsp; &lt;/OGRVRTLayer&gt;
<br><br>&lt;/OGRVRTDataSource&gt; <br><br>The error that I get is:<br>ERROR 4: Update access not supported for VRT datasources.<br>ERROR 1: Failed to open datasource `MYSQL:aqiTest,user=uuu,password=ppp,host=<a href="http://192.168.1.100">
192.168.1.100</a>,port=3306,tables=testdata'.<br>FAILURE:<br>Unable to open datasource `/web/maps/aqi/aqidata.ovf' with the following drivers.<br>&nbsp; -&gt; ESRI Shapefile<br>&nbsp; -&gt; UK .NTF<br>&nbsp; -&gt; SDTS<br>&nbsp; -&gt; TIGER<br>
&nbsp; -&gt; S57<br>&nbsp; -&gt; MapInfo File<br>&nbsp; -&gt; DGN<br>&nbsp; -&gt; VRT<br>&nbsp; -&gt; AVCBin<br>&nbsp; -&gt; REC<br>&nbsp; -&gt; Memory<br>&nbsp; -&gt; CSV<br>&nbsp; -&gt; GML<br>&nbsp; -&gt; ODBC<br>&nbsp; -&gt; PGeo<br><br><br>I don't believe that it is an issue with the user, password, table, or
host because when I tweak these on my desktop and hit the file with
ogrinfo, I get a more specific error message that references the
parameter that is wrong. <br><br>If I use the mysql client on the server to connect directly to the database with this user, password, host, a SELECT query successfully returns the expected data.&nbsp; To determine if the db user needed more than SELECT rights, I expended the user rights to ALL and this didn't change anything.&nbsp; I also expanded file rights for the dir that the .ovf is in.&nbsp; 
<br><br>Could there be a case sensitivity issue on the linux box?&nbsp; (I believe that all case is correct though)&nbsp; I can't really think of anything else.&nbsp; <br><br>David.<br><br><br> <br>