~ubuntu-branches/ubuntu/trusty/python-qt4/trusty

« back to all changes in this revision

Viewing changes to doc/html/qsqlrelation.html

  • Committer: Package Import Robot
  • Author(s): Dmitry Shachnev
  • Date: 2013-11-13 14:02:27 UTC
  • mfrom: (1.5.18) (50.1.23 sid)
  • Revision ID: package-import@ubuntu.com-20131113140227-jgpyxhgh4pc5j1s4
Tags: 4.10.3+dfsg-1
* Update pyrcc4 man page to list -py2 and -py3 options.
* Regenerate resource files during build.
* Repack orig tarball to remove non-free Sphinx-generated HTML
  documentation and non-free JS files (closes: #723039).
* Add debian/get-orig-source.sh script.
* Update debian/watch to mangle dfsg version.
* Drop debian/python-qt4-doc.docs, we install docs directly.
* Pass --debug to configure-ng.py when doing debug builds.
* Add a patch (phonon_cfgtest.diff) to fix detection of new Phonon
  versions.
* Add a patch (config_flags.diff) to apply build flags to designer
  module.
* Remove duplicate references to GPL license file from debian/copyright.
* Add myself to Uploaders.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0" encoding="iso-8859-1"?>
2
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
3
 
<html><head><title>QSqlRelation Class Reference</title><style>h3.fn,span.fn { margin-left: 1cm; text-indent: -1cm }
4
 
a:link { color: #004faf; text-decoration: none }
5
 
a:visited { color: #672967; text-decoration: none }
6
 
td.postheader { font-family: sans-serif }
7
 
tr.address { font-family: sans-serif }
8
 
body { background: #ffffff; color: black; }
9
 
</style></head><body><table border="0" cellpadding="0" cellspacing="0" width="100%"><tr /><td align="left" valign="top" width="32"><img align="left" border="0" height="32" src="images/rb-logo.png" width="32" /></td><td width="1">&#160;&#160;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a>&#160;&#183; <a href="classes.html"><font color="#004faf">All Classes</font></a>&#160;&#183; <a href="modules.html"><font color="#004faf">Modules</font></a></td></table><h1 align="center">QSqlRelation Class Reference<br /><sup><sup>[<a href="qtsql.html">QtSql</a> module]</sup></sup></h1><p>The QSqlRelation class stores information about an SQL foreign
10
 
key. <a href="#details">More...</a></p>
11
 
 
12
 
<h3>Methods</h3><ul><li><div class="fn" /><b><a href="qsqlrelation.html#QSqlRelation">__init__</a></b> (<i>self</i>)</li><li><div class="fn" /><b><a href="qsqlrelation.html#QSqlRelation-2">__init__</a></b> (<i>self</i>, QString&#160;<i>aTableName</i>, QString&#160;<i>indexCol</i>, QString&#160;<i>displayCol</i>)</li><li><div class="fn" /><b><a href="qsqlrelation.html#QSqlRelation-3">__init__</a></b> (<i>self</i>, QSqlRelation)</li><li><div class="fn" />QString <b><a href="qsqlrelation.html#displayColumn">displayColumn</a></b> (<i>self</i>)</li><li><div class="fn" />QString <b><a href="qsqlrelation.html#indexColumn">indexColumn</a></b> (<i>self</i>)</li><li><div class="fn" />bool <b><a href="qsqlrelation.html#isValid">isValid</a></b> (<i>self</i>)</li><li><div class="fn" />QString <b><a href="qsqlrelation.html#tableName">tableName</a></b> (<i>self</i>)</li></ul><a name="details" /><hr /><h2>Detailed Description</h2><p>The QSqlRelation class stores information about an SQL foreign
13
 
key.</p>
14
 
<p>QSqlRelation is a helper class for <a href="qsqlrelationaltablemodel.html">QSqlRelationalTableModel</a>. See
15
 
<a href="qsqlrelationaltablemodel.html#setRelation">QSqlRelationalTableModel.setRelation</a>()
16
 
and <a href="qsqlrelationaltablemodel.html#relation">QSqlRelationalTableModel.relation</a>()
17
 
for details.</p>
18
 
<hr /><h2>Method Documentation</h2><h3 class="fn"><a name="QSqlRelation" />QSqlRelation.__init__ (<i>self</i>)</h3><p>Constructs an invalid <a href="qsqlrelation.html">QSqlRelation</a> object.</p>
19
 
<p>For such an object, the <a href="qsqlrelation.html#tableName">tableName</a>(), <a href="qsqlrelation.html#indexColumn">indexColumn</a>(), and <a href="qsqlrelation.html#displayColumn">displayColumn</a>() functions
20
 
return an empty string.</p>
21
 
<p><b>See also</b> <a href="qsqlrelation.html#isValid">isValid</a>().</p>
22
 
 
23
 
 
24
 
<h3 class="fn"><a name="QSqlRelation-2" />QSqlRelation.__init__ (<i>self</i>, QString&#160;<i>aTableName</i>, QString&#160;<i>indexCol</i>, QString&#160;<i>displayCol</i>)</h3><p>Constructs a <a href="qsqlrelation.html">QSqlRelation</a>
25
 
object, where <i>tableName</i> is the SQL table name to which a
26
 
foreign key refers, <i>indexColumn</i> is the foreign key, and
27
 
<i>displayColumn</i> is the field that should be presented to the
28
 
user.</p>
29
 
<p><b>See also</b> <a href="qsqlrelation.html#tableName">tableName</a>(), <a href="qsqlrelation.html#indexColumn">indexColumn</a>(), and <a href="qsqlrelation.html#displayColumn">displayColumn</a>().</p>
30
 
 
31
 
 
32
 
<h3 class="fn"><a name="QSqlRelation-3" />QSqlRelation.__init__ (<i>self</i>, <a href="qsqlrelation.html">QSqlRelation</a>)</h3><h3 class="fn"><a name="displayColumn" />QString QSqlRelation.displayColumn (<i>self</i>)</h3><p>Returns the column from table <a href="qsqlrelation.html#tableName">tableName</a>() that should be
33
 
presented to the user instead of a foreign key.</p>
34
 
 
35
 
 
36
 
<h3 class="fn"><a name="indexColumn" />QString QSqlRelation.indexColumn (<i>self</i>)</h3><p>Returns the index column from table <a href="qsqlrelation.html#tableName">tableName</a>() to which a foreign
37
 
key refers.</p>
38
 
 
39
 
 
40
 
<h3 class="fn"><a name="isValid" />bool QSqlRelation.isValid (<i>self</i>)</h3><p>Returns true if the <a href="qsqlrelation.html">QSqlRelation</a>
41
 
object is valid; otherwise returns false.</p>
42
 
 
43
 
 
44
 
<h3 class="fn"><a name="tableName" />QString QSqlRelation.tableName (<i>self</i>)</h3><p>Returns the name of the table to which a foreign key refers.</p>
45
 
<address><hr /><div align="center"><table border="0" cellspacing="0" width="100%"><tr class="address"><td align="left" width="25%">PyQt&#160;4.10.3 for X11</td><td align="center" width="50%">Copyright &#169; <a href="http://www.riverbankcomputing.com">Riverbank&#160;Computing&#160;Ltd</a> and <a href="http://www.qtsoftware.com">Nokia</a> 2012</td><td align="right" width="25%">Qt&#160;4.8.5</td></tr></table></div></address></body></html>
 
 
b'\\ No newline at end of file'