(self)
| 1127 | |
| 1128 | @property |
| 1129 | def arraysize(self): |
| 1130 | return skip_if( |
| 1131 | [ |
| 1132 | no_support("+pymssql", "DBAPI is missing this attribute"), |
| 1133 | no_support("+mysqlconnector", "DBAPI ignores this attribute"), |
| 1134 | ] |
| 1135 | ) |
| 1136 | |
| 1137 | @property |
| 1138 | def emulated_lastrowid(self): |
nothing calls this directly
no test coverage detected