ide

Sybase Development IDE

陌路散爱 提交于 2019-12-05 17:14:16
Is there a Toad type application for Sybase? I can't seem to find a single one! I've tried using VS 2008 but can't see the sproc source. Am assuming Sybase ASE. Ships with Sybase Central and SQL Advantage as part of the client tools. Sybase Central lets you manage and create tables, views, sprocs etc. SQL Advantage lets you run SQL... Sybase Workspace is a new tool for ASE, I've never tried it. http://www.sybase.com/products/modelingdevelopment/workspace ASE ISQL is a free tool that is also useful for running sql, but is less useful for modifiying stored procedures etc. (More of a SQL

Lombok 使用详解,简化Java编程

强颜欢笑 提交于 2019-12-05 16:26:37
摘自: https://www.cnblogs.com/FraserYu/p/11927535.html Lombok 使用详解,简化Java编程 前言 在 Java 应用程序中存在许多重复相似的、生成之后几乎不对其做更改的代码,但是我们还不得不花费很多精力编写它们来满足 Java 的编译需求 比如,在 Java 应用程序开发中,我们几乎要为所有 Bean 的成员变量添加 get() ,set() 等方法,这些相对固定但又不得不编写的代码浪费程序员很多精力,同时让类内容看着更杂乱,我们希望将有限的精力关注在更重要的地方。 Lombok 已经诞生很久了,甚至在 Spring Boot Initalizr 中都已加入了 Lombok 选项, 这里我们将 Lombok 做一下详细说明: Lombok 官网的介绍 :Project Lombok is a java library that automatically plugs into your editor and build tools, spicing up your java. Never write another getter or equals method again. Early access to future java features such as val, and much more. 直白的说:

Better multi-threaded debugging in the Delphi

孤人 提交于 2019-12-05 16:16:12
Leading on from the answer to another question about bugs in the Delphi IDE, does anyone know if there is a way to improve the multi-threaded debugging functionality of the IDE, or if not, at least why it is so bad on occasion? When you have multiple threads within a program, stepping through the code with F7 or F8 can often lead to either very long pauses, or the whole IDE just locks ups. This is especially apparent when you leave or enter a method or procedure. The debugger always seems to be fine for single threaded applications. PS. The version I'm using is 2007 From my experience multi

Alternative IDE for Silverlight

元气小坏坏 提交于 2019-12-05 16:02:36
I want to play around with silverlight without having to buy a Visual Studio 2008 license. I already used my trial time with Visual Studio, so I'm trying to find another solution. Any thing out there? Thanks Visual Web Developer Express SP1 is supported with RC0 and later. Install it first, then install the tools. What I heard, you can use VS Express SP1 with Silverlight. Use Eclipse Eclipse tools for Microsoft Silverlight check out http://www.eclipse4sl.org/ 来源: https://stackoverflow.com/questions/197703/alternative-ide-for-silverlight

Open-source IDE's with Git support [closed]

ぃ、小莉子 提交于 2019-12-05 15:16:38
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I'm having trouble finding an open-source IDE with support for Git. Are there any that you could point me to or recommend? 回答1: There's an Eclipse plugin in progress. 回答2: There's nbgit for NetBeans in development, but it's not yet stable. 回答3: If you only want a GUI for git, try QGit. 回答4: I don't know if such

How can I make VIM a full fledged IDE

拜拜、爱过 提交于 2019-12-05 14:27:59
How could I make VIM a full fledged IDE by using different supported plugins for YUI, JQuery and git integration etc. http://vim.wikia.com/wiki/Use_Vim_like_an_IDE This has links for various plugins for vim. Explore on this site and you can find a few more resources and tips for using Vim as your IDE. http://www.derekwyatt.org/vim/vim-tutorial-videos/ Thoses videos can teach you a lot about vim. I guess you'll be able to do whatever you need to after looking at them. sbtkd85 Posting my response from Unix & Linux here as well since that thread was closed. While there are many plugins for Vim,

Jump to method call from method definition in eclipse [Java perspective]

China☆狼群 提交于 2019-12-05 13:49:25
问题 (In eclipse) We have a shortcut key to jump to method definition from wherever the method is called, i.e. by using F3. But what if I am currently on the method definition and I want to go that location where the method is called or used. Any shortcut for this? 回答1: You can try Ctrl+Shift+G which is a equivalent to find references. or Ctrl+Alt+H which brings up call hierarchy. 回答2: It's Ctrl + Alt + H to bring up the call hierarchy. 来源: https://stackoverflow.com/questions/12348567/jump-to

vim - indentation of C++ constructor initialization list problem

南笙酒味 提交于 2019-12-05 13:03:49
I'm using vim 7.0. I want the following code be indented in the following way (initialization list in the same indentation as constructor): A::A() : a1(10), a2(10), a3(10) { } According to vim help this can be done by setting: set cino+=i0 But this setting yields (only a1 is indented correctly): A::A() : a1(10), a2(10), a3(10) { } Setting cino+=i1 indents correctly a1..a3 with 1 space indentation. According to documentation and a little experiment, the following could help: :set cino=i-s Seems to be indenting init list exactly as you wanted. Try this. Basically I had a quick play with the cino

Creating new database in DataGrip JetBrains

守給你的承諾、 提交于 2019-12-05 13:03:31
问题 Anybody know how to create new database in DataGrip (database IDE from JetBrains)? Could not find in DataGrip Help page. 回答1: In DataGrip 2017.1 UI for this was introduced 回答2: You first define the database. File --> Data Sources and Drivers --> Click on the green '+' in the top left corner to select the database type. And then fill in all the settings in the 'General' tab. For example for PostgreSQL: Host: localhost Database: postgres User: postgres Password: password Once you are set up,

Search in PyCharm interactive console command history

帅比萌擦擦* 提交于 2019-12-05 12:15:54
问题 PyCharm keeps a command history for it's interactive Python console. Is there a way to access this history with some sort of search instead of just browsing the entries with the arrow keys in the interactive console window? My environment: PyCharm 2.7 EAP (124.138) on MacOS X 10.8.2. 回答1: As of PyCharm 3.1, while in the console, press ⌥⌘e, the "Browse History" window will come up, start typing to search for specific commands 回答2: Not available yet, please vote for the related feature requests