Home
last modified time | relevance | path

Searched refs:dialect (Results 151 – 175 of 9268) sorted by relevance

12345678910>>...371

/dports/lang/python38/Python-3.8.12/Lib/test/
H A Dtest_csv.py69 self.assertIs(obj.dialect.strict, False)
107 class dialect: class
116 args = args + (dialect,)
469 dialect = csv.get_dialect(name)
474 dialect = csv.get_dialect(name)
483 reader = csv.reader(fileobj, dialect = self.dialect)
489 writer = csv.writer(fileobj, dialect = self.dialect)
495 dialect = 'excel' variable in TestDialectExcel
596 dialect = EscapedExcel() variable in TestEscapedExcel
605 dialect = 'unix' variable in TestDialectUnix
[all …]
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Lib/test/
H A Dtest_csv.py69 self.assertIs(obj.dialect.strict, False)
107 class dialect: class
116 args = args + (dialect,)
469 dialect = csv.get_dialect(name)
474 dialect = csv.get_dialect(name)
483 reader = csv.reader(fileobj, dialect = self.dialect)
489 writer = csv.writer(fileobj, dialect = self.dialect)
495 dialect = 'excel' variable in TestDialectExcel
596 dialect = EscapedExcel() variable in TestEscapedExcel
605 dialect = 'unix' variable in TestDialectUnix
[all …]
/dports/databases/py-sqlalchemy12/SQLAlchemy-1.2.19/lib/sqlalchemy/sql/
H A Dsqltypes.py231 def literal_processor(self, dialect): argument
242 def bind_processor(self, dialect): argument
620 def bind_processor(self, dialect): argument
639 "storage." % (dialect.name, dialect.driver)
897 def bind_processor(self, dialect): argument
898 if dialect.dbapi is None:
1549 def bind_processor(self, dialect): argument
1622 def bind_processor(self, dialect): argument
1752 compiler = dialect.statement_compiler(dialect, None)
1761 def bind_processor(self, dialect): argument
[all …]
/dports/databases/py-sqlalchemy13/SQLAlchemy-1.3.24/lib/sqlalchemy/engine/
H A Dstrategies.py95 dialect = dialect_cls(**dialect_args)
107 if dialect._has_events:
121 pool_args = {"dialect": dialect}
151 pool._dialect = dialect
171 dialect.__class__.__name__,
180 do_on_connect = dialect.on_connect()
199 dialect.initialize(c)
200 dialect.do_rollback(c.connection)
262 dialect = dialect_cls(**dialect_args)
267 def __init__(self, dialect, execute): argument
[all …]
/dports/databases/py-aiopg/aiopg-1.3.3/aiopg/sa/
H A Dengine.py36 dialect = PGDialect_psycopg2(
41 dialect.implicit_returning = True
42 dialect.supports_native_enum = True
44 dialect._backslash_escapes = False
46 dialect._has_native_hstore = True
48 return dialect
59 dialect=_dialect, argument
75 dialect=dialect,
88 dialect=_dialect, argument
131 self._dialect = dialect
[all …]
/dports/databases/py-sqlalchemy12/SQLAlchemy-1.2.19/lib/sqlalchemy/dialects/
H A D__init__.py31 dialect, driver = name.split(".")
33 dialect = name
36 if dialect in _translates:
37 translated = _translates[dialect]
40 "renamed to '%s'" % (dialect, translated)
42 dialect = translated
44 module = __import__("sqlalchemy.dialects.%s" % (dialect,)).dialects
48 module = getattr(module, dialect)
51 return lambda: module.dialect
/dports/databases/py-sqlalchemy11/SQLAlchemy-1.1.18/lib/sqlalchemy/dialects/
H A D__init__.py30 dialect, driver = name.split(".")
32 dialect = name
35 if dialect in _translates:
36 translated = _translates[dialect]
39 "renamed to '%s'" % (dialect, translated)
41 dialect = translated
43 module = __import__('sqlalchemy.dialects.%s' % (dialect, )).dialects
47 module = getattr(module, dialect)
50 return lambda: module.dialect
/dports/databases/py-sqlalchemy13/SQLAlchemy-1.3.24/lib/sqlalchemy/dialects/oracle/
H A Dcx_oracle.py371 cx_Oracle = dialect.dbapi
386 def bind_processor(self, dialect): argument
410 cx_Oracle = dialect.dbapi
567 dialect, coltype
693 self.dialect,
745 if self.dialect.arraysize:
1067 dialect = self
1068 cx_Oracle = dialect.dbapi
1118 dialect.encoding, errors=dialect.encoding_errors
1140 dialect.encoding, errors=dialect.encoding_errors
[all …]
/dports/databases/py-sqlalchemy13/SQLAlchemy-1.3.24/test/dialect/postgresql/
H A Dtest_dialect.py64 dialect = postgresql.dialect()
107 is_(dialect, postgresql.dialect)
128 dialect = psycopg2_dialect.dialect()
135 dialect = psycopg2_dialect.dialect()
142 dialect = psycopg2_dialect.dialect()
149 dialect = psycopg2_dialect.dialect()
156 dialect = psycopg2_dialect.dialect()
163 dialect = psycopg2_dialect.dialect()
171 dialect = psycopg2_dialect.dialect()
854 dialect = postgresql.dialect()
[all …]
/dports/databases/py-sqlalchemy11/SQLAlchemy-1.1.18/lib/sqlalchemy/dialects/sqlite/
H A Dpysqlite.py276 def bind_processor(self, dialect): argument
277 if dialect.native_datetime:
280 return DATETIME.bind_processor(self, dialect)
282 def result_processor(self, dialect, coltype): argument
283 if dialect.native_datetime:
290 def bind_processor(self, dialect): argument
291 if dialect.native_datetime:
294 return DATE.bind_processor(self, dialect)
296 def result_processor(self, dialect, coltype): argument
297 if dialect.native_datetime:
[all …]
/dports/databases/py-sqlalchemy12/SQLAlchemy-1.2.19/lib/sqlalchemy/dialects/sqlite/
H A Dpysqlite.py277 def bind_processor(self, dialect): argument
278 if dialect.native_datetime:
281 return DATETIME.bind_processor(self, dialect)
283 def result_processor(self, dialect, coltype): argument
284 if dialect.native_datetime:
291 def bind_processor(self, dialect): argument
292 if dialect.native_datetime:
295 return DATE.bind_processor(self, dialect)
297 def result_processor(self, dialect, coltype): argument
298 if dialect.native_datetime:
[all …]
/dports/databases/py-sqlalchemy10/SQLAlchemy-1.0.14/lib/sqlalchemy/dialects/sqlite/
H A Dpysqlite.py276 def bind_processor(self, dialect): argument
277 if dialect.native_datetime:
280 return DATETIME.bind_processor(self, dialect)
282 def result_processor(self, dialect, coltype): argument
283 if dialect.native_datetime:
290 def bind_processor(self, dialect): argument
291 if dialect.native_datetime:
294 return DATE.bind_processor(self, dialect)
296 def result_processor(self, dialect, coltype): argument
297 if dialect.native_datetime:
[all …]
/dports/databases/py-sqlalchemy13/SQLAlchemy-1.3.24/test/
H A Drequirements.py551 config.db.dialect._is_mariadb
900 and config.db.dialect._is_mariadb,
936 and not config.db.dialect._is_mariadb,
1454 and not config.db.dialect._is_mariadb
1463 and config.db.dialect._is_mysql
1470 and config.db.dialect._is_mariadb
1477 and config.db.dialect._is_mariadb
1485 if config.db.dialect._is_mariadb:
1510 not config.db.dialect._is_mariadb
1516 not config.db.dialect._is_mariadb
[all …]
/dports/databases/py-sqlalchemy12/SQLAlchemy-1.2.19/lib/sqlalchemy/dialects/oracle/
H A Dcx_oracle.py327 cx_Oracle = dialect.dbapi
342 def bind_processor(self, dialect): argument
366 cx_Oracle = dialect.dbapi
441 def bind_processor(self, dialect): argument
479 def bind_processor(self, dialect): argument
506 dialect, coltype
588 self.dialect,
640 if self.dialect.arraysize:
885 dialect = self
886 cx_Oracle = dialect.dbapi
[all …]
/dports/databases/py-sqlalchemy14/SQLAlchemy-1.4.27/lib/sqlalchemy/engine/
H A Dcharacteristics.py31 def reset_characteristic(self, dialect, dbapi_conn): argument
35 def set_characteristic(self, dialect, dbapi_conn, value): argument
39 def get_characteristic(self, dialect, dbapi_conn): argument
49 def reset_characteristic(self, dialect, dbapi_conn): argument
50 dialect.reset_isolation_level(dbapi_conn)
52 def set_characteristic(self, dialect, dbapi_conn, value): argument
53 dialect.set_isolation_level(dbapi_conn, value)
55 def get_characteristic(self, dialect, dbapi_conn): argument
56 return dialect.get_isolation_level(dbapi_conn)
/dports/databases/py-sqlalchemy10/SQLAlchemy-1.0.14/test/sql/
H A Dtest_types.py102 compile(dialect=dialect)
862 dialect=dialects.mysql.dialect()
867 dialect=dialects.postgresql.dialect()
874 dialect=dialects.postgresql.dialect()
886 dialect=dialects.mysql.dialect()
891 dialect=dialects.postgresql.dialect()
947 uni = u.dialect_impl(dialect).bind_processor(dialect)
960 uni = u.dialect_impl(dialect).bind_processor(dialect)
1653 dialect.type_compiler = SomeTypeCompiler(dialect)
1657 dialect=dialect
[all …]
/dports/lang/python311/Python-3.11.0a3/Lib/test/
H A Dtest_csv.py100 self.assertIs(obj.dialect.strict, True)
110 class dialect: class
119 args = args + (dialect,)
518 dialect = csv.get_dialect(name)
523 dialect = csv.get_dialect(name)
532 reader = csv.reader(fileobj, dialect = self.dialect)
538 writer = csv.writer(fileobj, dialect = self.dialect)
544 dialect = 'excel' variable in TestDialectExcel
645 dialect = EscapedExcel() variable in TestEscapedExcel
654 dialect = 'unix' variable in TestDialectUnix
[all …]
/dports/databases/py-sqlalchemy11/SQLAlchemy-1.1.18/lib/sqlalchemy/sql/
H A Dsqltypes.py203 def literal_processor(self, dialect): argument
209 def bind_processor(self, dialect): argument
578 def bind_processor(self, dialect): argument
596 'storage.' % (dialect.name, dialect.driver))
871 def bind_processor(self, dialect): argument
872 if dialect.dbapi is None:
1444 def bind_processor(self, dialect): argument
1456 dialect, coltype)
1516 def bind_processor(self, dialect): argument
1617 def bind_processor(self, dialect): argument
[all …]
/dports/databases/py-sqlalchemy10/SQLAlchemy-1.0.14/test/dialect/
H A Dtest_oracle.py62 dialect = cx_oracle.dialect()
425 dialect = oracle.dialect()
436 dialect=dialect)
442 dialect=dialect)
448 dialect=dialect)
458 dialect=dialect)
464 dialect=dialect)
471 dialect=dialect,
854 dialect = oracle.dialect(
1251 dialect = cx_oracle.dialect()
[all …]
/dports/databases/py-sqlalchemy13/SQLAlchemy-1.3.24/test/dialect/mssql/
H A Dtest_reflection.py353 dialect = mssql.dialect()
358 dialect = mssql.dialect()
364 dialect=dialect,
368 dialect = mssql.dialect()
375 dialect=dialect,
423 dialect = mssql.dialect()
435 dialect = mssql.dialect()
441 dialect=dialect, scalar=mock.Mock(return_value="my_db")
449 dialect = mssql.dialect()
498 dialect = mssql.dialect()
[all …]
/dports/databases/py-sqlalchemy12/SQLAlchemy-1.2.19/lib/sqlalchemy/engine/
H A Dstrategies.py95 dialect = dialect_cls(**dialect_args)
107 if dialect._has_events:
121 pool_args = {"dialect": dialect}
150 pool._dialect = dialect
170 dialect.__class__.__name__,
179 do_on_connect = dialect.on_connect()
198 dialect.initialize(c)
255 dialect = dialect_cls(**dialect_args)
260 def __init__(self, dialect, execute): argument
261 self._dialect = dialect
[all …]
/dports/databases/py-sqlalchemy11/SQLAlchemy-1.1.18/lib/sqlalchemy/engine/
H A Dstrategies.py88 dialect = dialect_cls(**dialect_args)
99 if dialect._has_events:
113 'dialect': dialect
140 pool._dialect = dialect
165 do_on_connect = dialect.on_connect()
181 dialect.initialize(c)
235 dialect = dialect_cls(**dialect_args)
240 def __init__(self, dialect, execute): argument
241 self._dialect = dialect
245 dialect = property(attrgetter('_dialect')) variable in MockEngineStrategy.MockConnection
[all …]
/dports/devel/py-unicodecsv/unicodecsv-0.14.1/unicodecsv/
H A Dpy2.py81 self.writer = csv.writer(f, dialect, *args, **kwds)
93 def dialect(self): member in UnicodeWriter
94 return self.writer.dialect
106 if dialect is None:
109 dialect = csv.excel
110 self.reader = csv.reader(f, dialect, **kwds)
114 self.dialect.quoting & csv.QUOTE_NONNUMERIC)
134 def dialect(self): member in UnicodeReader
135 return self.reader.dialect
165 extrasaction, dialect, *args, **kwds)
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/mlir/include/mlir/Conversion/
H A DPasses.td97 let summary = "Convert Complex dialect to LLVM dialect";
107 let summary = "Convert Complex dialect to standard dialect";
167 let summary = "Convert GPU dialect to SPIR-V dialect";
236 let summary = "Convert Linalg dialect to SPIR-V dialect";
263 let summary = "Convert Math dialect to LLVM dialect";
345 let summary = "Convert SCF dialect to SPIR-V dialect.";
425 let summary = "Convert SPIR-V dialect to LLVM dialect";
490 let summary = "Convert Standard dialect to SPIR-V dialect";
616 "dialect.">,
628 "dialect.">
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/mlir/include/mlir/Conversion/
H A DPasses.td97 let summary = "Convert Complex dialect to LLVM dialect";
107 let summary = "Convert Complex dialect to standard dialect";
167 let summary = "Convert GPU dialect to SPIR-V dialect";
236 let summary = "Convert Linalg dialect to SPIR-V dialect";
263 let summary = "Convert Math dialect to LLVM dialect";
345 let summary = "Convert SCF dialect to SPIR-V dialect.";
425 let summary = "Convert SPIR-V dialect to LLVM dialect";
490 let summary = "Convert Standard dialect to SPIR-V dialect";
616 "dialect.">,
628 "dialect.">
[all …]

12345678910>>...371