[GRASS-SVN] r69433 - in grass/trunk: db/db.connect lib/db/sqlp
svn_grass at osgeo.org
svn_grass at osgeo.org
Sun Sep 11 00:28:22 PDT 2016
Author: martinl
Date: 2016-09-11 00:28:22 -0700 (Sun, 11 Sep 2016)
New Revision: 69433
Modified:
grass/trunk/db/db.connect/db.connect.html
grass/trunk/lib/db/sqlp/sql.html
Log:
db.connect+sql manual: link DB drivers (cosmetics)
Modified: grass/trunk/db/db.connect/db.connect.html
===================================================================
--- grass/trunk/db/db.connect/db.connect.html 2016-09-10 22:01:09 UTC (rev 69432)
+++ grass/trunk/db/db.connect/db.connect.html 2016-09-11 07:28:22 UTC (rev 69433)
@@ -4,7 +4,8 @@
These parameters are then taken as default values by modules so that the
user does not need to enter the parameters each time.
<p>
-The default database backend in GRASS GIS 7 is SQLite.
+The default database backend in GRASS GIS 7
+is <a href="grass-sqlite.html">SQLite</a>.
<h2>NOTES</h2>
@@ -14,8 +15,9 @@
<p>The <b>-c</b> flag will silently check if the connection parameters have
been set, and if not will set them to use GRASS's default values.
(useful in scripts before you attempt to create a new database table)
-<p>To connect a vector map to a database table, use <em>v.db.connect</em>
-or <em>v.db.addtable</em>.
+<p>To connect a vector map to a database table,
+use <em><a href="v.db.connect.html">v.db.connect</a></em> or
+<em><a href="v.db.addtable.html">v.db.addtable</a></em>.
<h2>EXAMPLES</h2>
@@ -30,8 +32,8 @@
db.tables -p
</pre></div>
<p>The SQLite database file is created automatically when used the first time.
+<p>See <a href="grass-sqlite.html">SQLite</a> database driver for details.
-
<h3>PostgreSQL (local connection)</h3>
Local storage, database tables stored in database "mydb"
@@ -43,8 +45,8 @@
db.connect -p
db.tables -p
</pre></div>
+<p>See <a href="grass-pg.html">PostgreSQL</a> database driver for details.
-
<h3>PostgreSQL (network connection)</h3>
Network storage, database tables stored in database "mydb"
@@ -56,8 +58,8 @@
db.connect -p
db.tables -p
</pre></div>
+<p>See <a href="grass-pg.html">PostgreSQL</a> database driver for details.
-
<h3>MySQL (local connection)</h3>
Local storage, database tables stored in database "mydb" (may require
@@ -69,8 +71,8 @@
db.connect -p
db.tables -p
</pre></div>
+<p>See <a href="grass-mysql.html">MySQL</a> database driver for details.
-
<h3>MySQL (network connection)</h3>
Network storage, database tables stored in database "mydb"
@@ -82,7 +84,8 @@
db.connect -p
db.tables -p
</pre></div>
-
+<p>See <a href="grass-mysql.html">MySQL</a> database driver for details.
+
<h3>ODBC</h3>
Network storage, database tables stored in database "mydb"
@@ -94,8 +97,8 @@
db.connect -p
db.tables -p
</pre></div>
+<p>See <a href="grass-odbc.html">ODBC</a> database driver for details.
-
<h3>DBF (local, not recommended)</h3>
Local storage (the dbf/ subdirectory in the mapset must exist or must be
@@ -105,7 +108,8 @@
db.connect driver=dbf database='$GISDBASE/$LOCATION_NAME/$MAPSET/dbf/'
db.tables -p
</pre></div>
-
+<p>See <a href="grass-dbf.html">DBF</a> database driver for details.
+
<h2>SEE ALSO</h2>
<em>
Modified: grass/trunk/lib/db/sqlp/sql.html
===================================================================
--- grass/trunk/lib/db/sqlp/sql.html 2016-09-10 22:01:09 UTC (rev 69432)
+++ grass/trunk/lib/db/sqlp/sql.html 2016-09-11 07:28:22 UTC (rev 69433)
@@ -186,7 +186,7 @@
<h3>Example of changing a SQL type (type casting)</h3>
-<i>Note: not supported for DBF driver.</i>
+<i>Note: not supported for <a href="grass-dbf.html">DBF driver</a>.</i>
<p>
North Carolina data set: convert string column to double precision:
<p>
@@ -203,7 +203,7 @@
<h3>Example of concatenation of fields</h3>
-<i>Note: not supported for DBF driver.</i>
+<i>Note: not supported for <a href="grass-dbf.html">DBF driver</a>.</i>
<div class="code"><pre>
v.db.update vectormap column=column3 qcolumn="column1 || column2"
@@ -224,8 +224,10 @@
<h2>SEE ALSO</h2>
<em>
+<a href="db.connect.html">db.connect</a>,
<a href="db.select.html">db.select</a>,
<a href="db.execute.html">db.execute</a>,
+<a href="v.db.connect.html">v.db.connect</a>,
<a href="v.db.select.html">v.db.select</a>,
<a href="v.db.update.html">v.db.update</a>
</em>
More information about the grass-commit
mailing list