(self)
| 829 | |
| 830 | @testing.requires.sqlite |
| 831 | def test_ddl_execute(self): |
| 832 | engine = create_engine("sqlite:///") |
| 833 | cx = engine.connect() |
| 834 | cx.begin() |
| 835 | ddl = DDL("SELECT 1") |
| 836 | |
| 837 | r = cx.execute(ddl) |
| 838 | eq_(list(r), [(1,)]) |
| 839 | |
| 840 | def test_platform_escape(self): |
| 841 | """test the escaping of % characters in the DDL construct.""" |