-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- altibase, tibero 디비를 기본으로 데이터베이스로 사용할 수 있도록 수정.
- altibase 드라이버를 기본으로탑재 - 데이터베이스 수정, 삭제 버튼을 명시적으로 추가.
- Loading branch information
hangum
committed
Mar 3, 2020
1 parent
14cf158
commit f188746
Showing
15 changed files
with
104 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.class |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.11 MB
com.hangum.tadpole.engine/libs/driver/mssql/mssql-jdbc-7.2.2.jre8.jar
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
54 changes: 54 additions & 0 deletions
54
...ore/src/com/hangum/tadpole/rdb/core/actions/connections/ModifyDBConnectionInfoAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2020 hangum. | ||
* All rights reserved. This program and the accompanying materials | ||
* are made available under the terms of the GNU Lesser Public License v2.1 | ||
* which accompanies this distribution, and is available at | ||
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html | ||
* | ||
* Contributors: | ||
* hangum - initial API and implementation | ||
******************************************************************************/ | ||
package com.hangum.tadpole.rdb.core.actions.connections; | ||
|
||
import org.apache.log4j.Logger; | ||
import org.eclipse.jface.action.IAction; | ||
import org.eclipse.jface.viewers.ISelection; | ||
import org.eclipse.jface.viewers.IStructuredSelection; | ||
import org.eclipse.ui.IViewActionDelegate; | ||
import org.eclipse.ui.IViewPart; | ||
|
||
import com.hangum.tadpole.engine.query.dao.system.UserDBDAO; | ||
import com.hangum.tadpole.rdb.core.dialog.dbconnect.ModifyDBDialog; | ||
|
||
/** | ||
* 데이터베이스 연결 수정 액션 | ||
* | ||
* @author hangum | ||
*/ | ||
public class ModifyDBConnectionInfoAction implements IViewActionDelegate { | ||
private static final Logger logger = Logger.getLogger(ModifyDBConnectionInfoAction.class); | ||
|
||
private IStructuredSelection sel; | ||
|
||
public ModifyDBConnectionInfoAction() { | ||
super(); | ||
} | ||
|
||
@Override | ||
public void run(IAction action) { | ||
final UserDBDAO userDB = (UserDBDAO)sel.getFirstElement(); | ||
|
||
ModifyDBDialog dialog = new ModifyDBDialog(null, userDB); | ||
dialog.open(); | ||
} | ||
|
||
@Override | ||
public void selectionChanged(IAction action, ISelection selection) { | ||
sel = (IStructuredSelection)selection; | ||
} | ||
|
||
@Override | ||
public void init(IViewPart view) { | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.class |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<?pde version="3.8"?><target name="AllInOne" sequenceNumber="9"> | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><?pde version="3.8"?><target name="AllInOne" sequenceNumber="9"> | ||
<locations> | ||
<location path="${project_loc:/targetProject}/ext" type="Directory"/> | ||
<location path="${project_loc:/targetProject}/AllInOnev2.0.0" type="Directory"/> | ||
</locations> | ||
</target> | ||
</target> |