~ubuntu-branches/ubuntu/wily/grass/wily

« back to all changes in this revision

Viewing changes to scripts/v.db.droptable/v.db.droptable.html

Tags: 7.0.0~rc1+ds1-1~exp1
* New upstream release candidate.
* Repack upstream tarball, remove precompiled Python objects.
* Add upstream metadata.
* Update gbp.conf and Vcs-Git URL to use the experimental branch.
* Update watch file for GRASS 7.0.
* Drop build dependencies for Tcl/Tk, add build dependencies:
  python-numpy, libnetcdf-dev, netcdf-bin, libblas-dev, liblapack-dev
* Update Vcs-Browser URL to use cgit instead of gitweb.
* Update paths to use grass70.
* Add configure options: --with-netcdf, --with-blas, --with-lapack,
  remove --with-tcltk-includes.
* Update patches for GRASS 7.
* Update copyright file, changes:
  - Update copyright years
  - Group files by license
  - Remove unused license sections
* Add patches for various typos.
* Fix desktop file with patch instead of d/rules.
* Use minimal dh rules.
* Bump Standards-Version to 3.9.6, no changes.
* Use dpkg-maintscript-helper to replace directories with symlinks.
  (closes: #776349)
* Update my email to use @debian.org address.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<h2>DESCRIPTION</h2>
 
2
 
 
3
<em>v.db.droptable</em> removes an existing attribute table from a 
 
4
given vector map linked at given layer. If the <b>-f</b> force flag is not
 
5
given then nothing is removed.
 
6
 
 
7
<h2>NOTES</h2>
 
8
 
 
9
<em>v.db.droptable</em> is a front-end to <em>db.execute</em> to allow easier usage.
 
10
<p>The existing database connection(s) can be verified with <em>v.db.connect</em>.
 
11
 
 
12
<h2>EXAMPLE</h2>
 
13
 
 
14
Removing attribute table connected to layer 1:<br>
 
15
<div class="code"><pre>
 
16
g.copy vect=roadsmajor,myroads
 
17
v.db.droptable myroads
 
18
v.db.droptable myroads -f
 
19
v.db.connect -p myroads
 
20
</pre></div>
 
21
 
 
22
<h2>SEE ALSO</h2>
 
23
 
 
24
<em>
 
25
<a href="db.connect.html">db.connect</a>,
 
26
<a href="db.execute.html">db.execute</a>,
 
27
<a href="v.db.addtable.html">v.db.addtable</a>,
 
28
<a href="v.db.connect.html">v.db.connect</a>,
 
29
<a href="v.db.dropcolumn.html">v.db.dropcolumn</a>,
 
30
<a href="v.db.select.html">v.db.select</a>,
 
31
<a href="v.db.update.html">v.db.update</a><br>
 
32
<a href="sql.html">GRASS SQL interface</a>
 
33
</em>
 
34
 
 
35
 
 
36
<h2>AUTHOR</h2>
 
37
 
 
38
Markus Neteler
 
39
 
 
40
<p><i>Last changed: $Date: 2012-11-25 02:59:42 -0800 (Sun, 25 Nov 2012) $</i>