aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPDatabaseCopy.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix Sequel Pro forgetting database charset when renaming or copying a ↵Max2015-03-121-12/+4
| | | | | | database (#2082) (While we're at it, also removed some duplicate CREATE DATABASE code)
* Update URL in source file header to point to GitHub.Stuart Connolly2014-01-261-1/+1
|
* Remove SVN property placeholder.Stuart Connolly2014-01-261-2/+0
|
* Change Sequel Pro's license from GPL (version 2) to MIT.stuconnolly2012-07-251-12/+20
|
* Rename database action class.stuconnolly2012-05-041-2/+2
|
* Add initial support of moving views when renaming a database. Currently not ↵stuconnolly2012-05-041-18/+1
| | | | hooked up yet. Part of issue #1235.
* Tidy up database renaming and copying by removing the use of alert dialogs ↵stuconnolly2010-08-131-2/+2
| | | | within loops to prevent locking up the main thread. These operations ideally should also be threaded.
* Minor tidy up including the removal of unnecessary imports.stuconnolly2010-08-121-2/+2
|
* Added class SPDBActionCommons providing common functionality to all derived ↵drx7772010-04-291-16/+2
| | | | DatabaseActions classes, thus reducing code duplicates.
* SVN properties.stuconnolly2010-04-281-1/+1
|
* This changeset implements renaming and duplicating databases on a server. ↵drx7772010-04-281-0/+80
Details as follows: * altered MCPConnection listTablesFromDB:like: to return NSArray * altered MCPConnection listFieldsFromTable:like: to use backtick quoted strings for table and fieldnames * added MCPConnection listTablesFromDB for a complete table list * added SPStringAdditions.h to various files to prevent warnings * added sheets for duplicate/rename DB in DBView.xib * added duplicate/rename menu items to MainMenu.xib * added outlets in TableDocument: databaseNewSheet databaseRenameSheet databaseCopyNameField databaseRenameNameField copyOnlyStructureButton copyDatabaseButton renameDatabaseButton * added methods in TableDocument: getConnection, copyDatabase, renameDatabase, _copyDatabase, _renameDatabase * added OCMock Framework for object mocking in tests * added group Others/DatabaseActions