1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgsdatasourceuri.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsDataSourceUri
{
%Docstring(signature="appended")
Class for storing the component parts of a RDBMS data source URI (e.g. a
Postgres data source).
This structure stores the database connection information, including
host, database, user name, password, schema, password, and SQL where
clause.
%End
%TypeHeaderCode
#include "qgsdatasourceuri.h"
%End
public:
static const QMetaObject staticMetaObject;
public:
enum SslMode /BaseType=IntEnum/
{
SslPrefer,
SslDisable,
SslAllow,
SslRequire,
SslVerifyCa,
SslVerifyFull
};
QgsDataSourceUri();
QgsDataSourceUri( const QString &uri );
%Docstring
Constructor for QgsDataSourceUri which parses an input ``uri`` string.
%End
QString connectionInfo( bool expandAuthConfig = true ) const;
%Docstring
Returns the connection part of the URI.
%End
QString uri( bool expandAuthConfig = true ) const;
%Docstring
Returns the complete URI as a string.
%End
QByteArray encodedUri() const;
%Docstring
Returns the complete encoded URI as a byte array.
%End
void setEncodedUri( const QString &uri );
%Docstring
Sets the complete encoded ``uri`` from a string value.
%End
QString quotedTablename() const;
%Docstring
Returns the URI's table name, escaped and quoted.
%End
void setParam( const QString &key, const QString &value );
%Docstring
Sets a generic parameter ``value`` on the URI.
.. note::
If a parameter with the specified ``key`` already exists, another is inserted
and the existing value is left unchanged.
%End
void setParam( const QString &key, const QStringList &value ) /PyName=setParamList/;
%Docstring
Sets a generic parameter list ``value`` on the URI.
%End
int removeParam( const QString &key );
%Docstring
Removes a generic parameter by ``key``.
.. note::
Calling this method removes all the occurrences of key, and returns the number of parameters removed.
%End
QString param( const QString &key ) const;
%Docstring
Returns a generic parameter value corresponding to the specified
``key``.
%End
QStringList params( const QString &key ) const;
%Docstring
Returns multiple generic parameter values corresponding to the specified
``key``.
%End
bool hasParam( const QString &key ) const;
%Docstring
Returns ``True`` if a parameter with the specified ``key`` exists.
%End
void setConnection( const QString &aHost,
const QString &aPort,
const QString &aDatabase,
const QString &aUsername,
const QString &aPassword,
SslMode sslmode = SslPrefer,
const QString &authConfigId = QString() );
%Docstring
Sets all connection related members at once.
%End
void setConnection( const QString &aService,
const QString &aDatabase,
const QString &aUsername,
const QString &aPassword,
SslMode sslmode = SslPrefer,
const QString &authConfigId = QString() );
%Docstring
Sets all connection related members at once (for a service case).
%End
void setDatabase( const QString &database );
%Docstring
Sets the URI database name.
%End
void setDataSource( const QString &aSchema,
const QString &aTable,
const QString &aGeometryColumn,
const QString &aSql = QString(),
const QString &aKeyColumn = QString() );
%Docstring
Sets all data source related members at once.
The ``aSql`` argument represents a subset filter string to be applied to
the source, and should take the form of a SQL "where" clause (e.g.
"VALUE > 5", "CAT IN (1,2,3)").
%End
void setAuthConfigId( const QString &authcfg );
%Docstring
Sets the authentication configuration ID for the URI.
%End
void setUsername( const QString &username );
%Docstring
Sets the ``username`` for the URI.
%End
void setPassword( const QString &password );
%Docstring
Sets the ``password`` for the URI.
%End
static QString removePassword( const QString &aUri, bool hide = false );
%Docstring
Removes the password element from a URI.
:param aUri: A data source uri
:param hide: ``True`` to replace the password value with 'xxxxxxxx',
``False`` to remove password (key and value) (since QGIS
3.34)
:return: The data source uri without the password
%End
QString authConfigId() const;
%Docstring
Returns any associated authentication configuration ID stored in the
URI.
%End
QString username() const;
%Docstring
Returns the username stored in the URI.
%End
QString schema() const;
%Docstring
Returns the schema stored in the URI.
%End
QString table() const;
%Docstring
Returns the table name stored in the URI.
%End
QString sql() const;
%Docstring
Returns the SQL filter stored in the URI, if set.
This represents a subset filter string to be applied to the source, and
takes the form of a SQL "where" clause (e.g. "VALUE > 5", "CAT IN
(1,2,3)").
.. seealso:: :py:func:`setSql`
%End
QString geometryColumn() const;
%Docstring
Returns the name of the geometry column stored in the URI, if set.
%End
void setUseEstimatedMetadata( bool flag );
%Docstring
Sets whether estimated metadata should be used for the connection.
%End
bool useEstimatedMetadata() const;
%Docstring
Returns ``True`` if estimated metadata should be used for the
connection.
%End
void disableSelectAtId( bool flag );
%Docstring
Set to ``True`` to disable selection by feature ID.
%End
bool selectAtIdDisabled() const;
%Docstring
Returns whether the selection by feature ID is disabled.
%End
void clearSchema();
%Docstring
Clears the schema stored in the URI.
%End
void setSchema( const QString &schema );
%Docstring
Sets the ``scheme`` for the URI.
%End
void setSql( const QString &sql );
%Docstring
Sets the ``sql`` filter for the URI.
The ``sql`` represents a subset filter string to be applied to the
source, and should take the form of a SQL "where" clause (e.g. "VALUE >
5", "CAT IN (1,2,3)").
.. seealso:: :py:func:`sql`
%End
QString host() const;
%Docstring
Returns the host name stored in the URI.
%End
QString database() const;
%Docstring
Returns the database name stored in the URI.
%End
QString port() const;
%Docstring
Returns the port stored in the URI.
%End
QString driver() const;
%Docstring
Returns the driver name stored in the URI
%End
void setDriver( const QString &driver );
%Docstring
Sets the ``driver`` name stored in the URI.
%End
QString password() const;
%Docstring
Returns the password stored in the URI.
%End
SslMode sslMode() const;
%Docstring
Returns the SSL mode associated with the URI.
%End
QString service() const;
%Docstring
Returns the service name associated with the URI.
%End
QString keyColumn() const;
%Docstring
Returns the name of the (primary) key column for the referenced table.
%End
void setKeyColumn( const QString &column );
%Docstring
Sets the name of the (primary) key ``column``.
%End
Qgis::WkbType wkbType() const;
%Docstring
Returns the WKB type associated with the URI.
%End
void setWkbType( Qgis::WkbType type );
%Docstring
Sets the WKB ``type`` associated with the URI.
%End
QString srid() const;
%Docstring
Returns the spatial reference ID associated with the URI.
%End
void setSrid( const QString &srid );
%Docstring
Sets the spatial reference ID associated with the URI.
%End
static SslMode decodeSslMode( const QString &sslMode );
%Docstring
Decodes SSL mode string into enum value. If the string is not
recognized, SslPrefer is returned.
.. versionadded:: 3.2
%End
static QString encodeSslMode( SslMode sslMode );
%Docstring
Encodes SSL mode enum value into a string.
.. versionadded:: 3.2
%End
void setTable( const QString &table );
%Docstring
Sets table to ``table``
.. versionadded:: 3.10
%End
void setGeometryColumn( const QString &geometryColumn );
%Docstring
Sets geometry column name to ``geometryColumn``
.. versionadded:: 3.10
%End
QSet<QString> parameterKeys() const;
%Docstring
Returns parameter keys used in the uri: specialized ones ("table",
"schema", etc.) or generic parameters.
.. versionadded:: 3.26
%End
QgsHttpHeaders &httpHeaders();
%Docstring
Returns http headers
.. versionadded:: 3.26
%End
QString httpHeader( const QString &key );
%Docstring
Returns the http header value according to ``key``
.. versionadded:: 3.26
%End
void setHttpHeaders( const QgsHttpHeaders &headers );
%Docstring
Sets headers to ``headers``
.. versionadded:: 3.26
%End
SIP_PYOBJECT __repr__();
%MethodCode
QString str = QStringLiteral( "<QgsDataSourceUri: %1>" ).arg( sipCpp->uri( false ) );
sipRes = PyUnicode_FromString( str.toUtf8().constData() );
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/qgsdatasourceuri.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|