検索

phrase: max: clip:
target: order:
Results of 191 - 200 of about 238 for data (0.046 sec.)
Django におけるセキュリティ — Django 4.0.6 ドキュメント 4400
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... y achieved by storing the malicious scripts in the database where it will be retrieved and displayed to ot ... attacks can originate from any untrusted source of data, such as cookies or web services, whenever the dat ... limit the accessibility of your caching system and database using a firewall. Take a look at the Open Web ...
https://man.plustar.jp/django/topics/security.html - [similar]
PostgreSQL specific database constraints — Django 4.0.6 ドキュメント 4359
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... dules « previous | up | next » PostgreSQL specific database constraints ¶ PostgreSQL supports additional d ... es = () ) ¶ Creates an exclusion constraint in the database. Internally, PostgreSQL implements exclusion c ... (cancelled=False) . These conditions have the same database restrictions as django.db.models.Index.conditi ... cancelled = False ), ), ] 目次 PostgreSQL specific database constraints ExclusionConstraint name expressio ...
https://man.plustar.jp/django/ref/contrib/postgres/constraints.html - [similar]
Constraints reference — Django 4.0.6 ドキュメント 4359
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... erence ¶ The classes defined in this module create database constraints. They are added in the model Meta. ... o not raise ValidationError s. Rather you'll get a database integrity error on save() . UniqueConstraint s ... check , name ) ¶ Creates a check constraint in the database. check ¶ CheckConstraint. check ¶ A Q object o ... lasses = () ) ¶ Creates a unique constraint in the database. expressions ¶ UniqueConstraint. expressions ¶ ...
https://man.plustar.jp/django/ref/models/constraints.html - [similar]
Model index reference — Django 4.0.6 ドキュメント 4359
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... odel index reference ¶ Index classes ease creating database indexes. They can be added using the Meta.inde ... nclude = None ) ¶ Creates an index (B-Tree) in the database. expressions ¶ Index. expressions ¶ New in Dja ... ows creating functional indexes on expressions and database functions. 例: Index ( Lower ( 'title' ) . des ... -generate a name. For compatibility with different databases, index names cannot be longer than 30 charact ...
https://man.plustar.jp/django/ref/models/indexes.html - [similar]
django.urls utility functions — Django 4.0.6 ドキュメント 4359
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Match object that allows you to access various metadata about the resolved URL. If the URL does not resolv ... solve() get_script_prefix() 前のトピックへ Unicode data 次のトピックへ django.urls functions for use in UR ...
https://man.plustar.jp/django/ref/urlresolvers.html - [similar]
Built-in Views — Django 4.0.6 ドキュメント 4359
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... onent of Django (for example resetting the session data). If not specifically handled, Django will conside ...
https://man.plustar.jp/django/ref/views.html - [similar]
Django 1.6.3 release notes — Django 4.0.6 ドキュメント 4359
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... will not be cached. MySQL typecasting ¶ The MySQL database is known to "typecast" on certain queries; for ... licit conversion of query arguments to the correct database-level type before querying. However, three mod ... il the next write operation. Django 1.6 introduced database-level autocommit; since then, execution in suc ... out them; and further, such errors may manifest as data-corruption bugs. This change may cause test failur ...
https://man.plustar.jp/django/releases/1.6.3.html - [similar]
Django の認証方法のカスタマイズ — Django 4.0.6 ドキュメント 4359
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... uthentication backend that checks the Django users database and queries the built-in permissions. It does ... model doesn't provide those fields, you'll receive database errors when you check permissions. カスタムのユ ... password entries match password1 = self . cleaned_data . get ( "password1" ) password2 = self . cleaned_d ... mit = False ) user . set_password ( self . cleaned_data [ "password1" ]) if commit : user . save () return ...
https://man.plustar.jp/django/topics/auth/customizing.html - [similar]
一対一 (one-to-one) 関係 — Django 4.0.6 ドキュメント 4359
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... st): ... ValueError : save() prohibited to prevent data loss due to unsaved related object 'place'. Restau ...
https://man.plustar.jp/django/topics/db/examples/one_to_one.html - [similar]
django.db.transaction — Django 4.0.6 ドキュメント 4318
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... manager from django.db import ( DEFAULT_DB_ALIAS , DatabaseError , Error , ProgrammingError , connections ... ass def get_connection ( using = None ): """ Get a database connection by name, or the default database co ... d state! Otherwise, you break the atomic block and data corruption may occur. """ return get_connection ( ... and use `@oa` or `with oa:` multiple times. Since database connections are thread-local, this is thread-s ...
https://man.plustar.jp/django/_modules/django/db/transaction.html - [similar]