summaryrefslogtreecommitdiffstats
path: root/pgcli/pgexecute.py
AgeCommit message (Expand)Author
2015-02-08Revert psycopg2cffi to psycopg2.Amjith Ramanujam
2015-02-06Convert to use cffi. But unicode isn't working.Amjith Ramanujam
2015-01-26Convert psycopg2 erros to unicode. Fixes #124Amjith Ramanujam
2015-01-26Merge pull request #127 from darikg/schema_autocompleteAmjith Ramanujam
2015-01-26Handle unicode for hstore and unknown types. Fixes #134.Amjith Ramanujam
2015-01-25Remove pandas dependency by storing database metadata as lists of tuplesDarik Gamble
2015-01-25Merge branch 'master' into schema_autocompleteDarik Gamble
2015-01-24Support connecting to databases with unicode chars.Amjith Ramanujam
2015-01-23Remove the custom parse_dsn function.Amjith Ramanujam
2015-01-21Cast bytea fields to text for output.Daniel Rocco
2015-01-18Get schema names with a direct query instead of stripping them from the table...Darik Gamble
2015-01-18Make autocomplete schema-awareDarik Gamble
2015-01-17Consume the sql results as a generator.Amjith Ramanujam
2015-01-13Fix the crash when db change fails. Fix #117Amjith Ramanujam
2015-01-10Add logging to the tables and columns queries.Amjith Ramanujam
2015-01-10Support having multiple queries on the same line.Karl-Aksel Puulmann
2015-01-09CTRL+C while querying update: explicitly cancel old connectionKarl-Aksel Puulmann
2015-01-09Support for cancelling queriesKarl-Aksel Puulmann
2015-01-09Do only one query for all columns, instead of len(tables) queries. Should fix...Karl-Aksel Puulmann
2015-01-09Fix issues pointed out in pull request comments.Karl-Aksel Puulmann
2015-01-09Checking if database exists and some initial fixtures which clean upKarl-Aksel Puulmann
2015-01-07Remove unassigned local var from logging.Amjith Ramanujam
2015-01-07Force psycopg to decode strings received from database to unicode.Karl-Aksel Puulmann
2015-01-04Add logging to pgexecute.py.Amjith Ramanujam
2015-01-04Move parse_dsn tests to test folder instead of doctests.Amjith Ramanujam
2015-01-04Copy databases query from psql.Amjith Ramanujam
2014-12-18Beginnings of a table specific column completion.Amjith Ramanujam
2014-12-14Added doctest for _parse_dsn.Amjith Ramanujam
2014-12-13Fix the bug when just pressing enter without any text.Amjith Ramanujam
2014-12-13Enable autocommit when the database is switched.Amjith Ramanujam
2014-12-13Fix a bug in postgres connection string.Amjith Ramanujam
2014-12-12Allow postgres url for database name.Amjith Ramanujam
2014-12-11Add DESCRIBE command to pgspecial.Amjith Ramanujam
2014-12-11Add a method to get the list of databases.Amjith Ramanujam
2014-12-10Return the results in the form of a tuple.Amjith Ramanujam
2014-12-08Return list of tuples for \d special command.Amjith Ramanujam
2014-12-08Autorefresh for \c, update readme with thanks.Amjith Ramanujam
2014-12-07Implement change database for \c and use.Amjith Ramanujam
2014-11-28Fix a crash caused by leading space.Amjith Ramanujam
2014-11-28Deal with statements that don't return rows.Amjith Ramanujam
2014-11-28Fix a bug in generator exhaustion.Amjith Ramanujam
2014-11-26Move pgcli into a directory and make a package.Amjith Ramanujam