検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 35 for params (0.023 sec.)
django.core.validators — Django 4.0.6 ドキュメント 12443
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ationError ( self . message , code = self . code , params = { "value" : value }) def __eq__ ( self , other ) ... ationError ( self . message , code = self . code , params = { "value" : value }) if self . unsafe_chars . in ... ationError ( self . message , code = self . code , params = { "value" : value }) # Check if the scheme is va ... ationError ( self . message , code = self . code , params = { "value" : value }) # Then check full URL try : ...
https://man.plustar.jp/django/_modules/django/core/validators.html - [similar]
How to write custom lookups — Django 4.0.6 ドキュメント 12236
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... as_sql ( self , compiler , connection ): lhs , lhs_params = self . process_lhs ( compiler , connection ) rhs ... , rhs_params = self . process_rhs ( compiler , connection ) par ... ams = lhs_params + rhs_params return ' %s <> %s ' % ( lhs , rhs ), ... as_sql ( self , compiler , connection ): lhs , lhs_params = compiler . compile ( self . lhs . lhs ) rhs , rh ...
https://man.plustar.jp/django/howto/custom-lookups.html - [similar]
Database instrumentation — Django 4.0.6 ドキュメント 11870
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... a str , the SQL query to be sent to the database. params -- a list/tuple of parameter values for the SQL co ... ed call is execute() or executemany() (and whether params is expected to be a sequence of values, or a seque ... n the error message: def blocker ( execute , sql , params , many , context ): alias = context [ 'connection' ... queries = [] def __call__ ( self , execute , sql , params , many , context ): current_query = { 'sql' : sql ...
https://man.plustar.jp/django/topics/db/instrumentation.html - [similar]
django.core.exceptions — Django 4.0.6 ドキュメント 10677
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... .""" def __init__ ( self , message , code = None , params = None ): """ The `message` argument can be a sing ... te set. """ super () . __init__ ( message , code , params ) if isinstance ( message , ValidationError ): if ... age = message . error_list else : message , code , params = message . message , message . code , message . p ... self . message = message self . code = code self . params = params self . error_list = [ self ] @property de ...
https://man.plustar.jp/django/_modules/django/core/exceptions.html - [similar]
django.utils.http — Django 4.0.6 ドキュメント 9690
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... SplitResult , _coerce_args , _splitnetloc , _splitparams , scheme_chars , ) from urllib.parse import urlenc ... s original_urlencode from urllib.parse import uses_params from django.utils.datastructures import MultiValue ... query , "items" ): query = query . items () query_params = [] for key , value in query : if value is None : ... m = str ( item ) query_val . append ( item ) query_params . append (( key , query_val )) return original_url ...
https://man.plustar.jp/django/_modules/django/utils/http.html - [similar]
素の SQL 文の実行 — Django 4.0.6 ドキュメント 9118
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... させる場合に利用できます: Manager. raw ( raw_query , params = () , translations = None ) ¶ This method takes a ... い。 Changed in Django 3.2: The default value of the params argument was changed from None to an empty tuple. ... ータを用いたクエリを使用する場合は、 raw() に対して params 引数を利用できます: >>> lname = 'Doe' >>> Person . ... M myapp_person WHERE last_name = %s ' , [ lname ]) params is a list or dictionary of parameters. You'll use ...
https://man.plustar.jp/django/topics/db/sql.html - [similar]
How to implement a custom template backend — Django 4.0.6 ドキュメント 8767
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... tion. app_dirname = 'foobar' def __init__ ( self , params ): params = params . copy () options = params . po ... p ( 'OPTIONS' ) . copy () super () . __init__ ( params ) self . engine = foobar . Engine ( ** options ) d ...
https://man.plustar.jp/django/howto/custom-template-backend.html - [similar]
クエリー式 — Django 4.0.6 ドキュメント 8354
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... t for the database function. Returns a tuple (sql, params) , where sql is the SQL string, and params is the ... le to resolve). 生の SQL 式 ¶ class RawSQL ( sql , params , output_field = None ) ¶ Sometimes database expre ... any parameters that the user can control by using params . params is a required argument to force you to ac ... nection , template = None ): sql_expressions , sql_params = [], [] for expression in self . expressions : sq ...
https://man.plustar.jp/django/ref/models/expressions.html - [similar]
QuerySet API リファレンス — Django 4.0.6 ドキュメント 8354
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 。 extra() ¶ extra ( select = None , where = None , params = None , tables = None , order_by = None , select_ ... from sometable where othercol = %s " }, ... select_params = ( someparam ,), ... ) これは以下と同じです: >>> ... any parameters that the user can control by using params in order to protect against SQL injection attacks. ... uld avoid them if possible. Specify one or more of params , select , where or tables . None of the arguments ...
https://man.plustar.jp/django/ref/models/querysets.html - [similar]
Django 1.11.24 リリースノート — Django 4.0.6 ドキュメント 8274
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... eld and HStoreField when using on expressions with params ( #30672 ). 目次 Django 1.11.24 リリースノート Bug ... xes , ドキュメント , JSONField , 検索 , クイック , params クイック検索 Last update: 2022年6月01日 « previous ...
https://man.plustar.jp/django/releases/1.11.24.html - [similar]
PREV 1 2 3 4 NEXT