workbench

Moving connections and instances between two computers

跟風遠走 提交于 2019-11-28 17:42:48
I´ve got a mysql-server that I´m administrate remotely with MySQL Workbench. Now I´ve got a new computer and I cant find any solution to move my connections and instances-profiles to my new computer. This can´t be an unsolved question, huh? Not the first time this would happen for someone else. Correction: It´s not the server-instances that I want to move. I need to export/move/backup my many client-profiles/instances-connections in MySQL Workbench. Adam I had the same questions. I found a MySQL directory in %APPDATA%. Copy the entire directory to the same location on the new machine. You'll

Eclipse workspace crashes on startup

不羁的心 提交于 2019-11-28 11:57:56
I am using Spring Tool Suite(STS) 3.0.0 release (eclipse.buildId=3.0.0.201208091018-RELEASE-e42). It was running fine for a couple of months but lately my main workspace is crashing on splash screen with error as shown in last part of this post. I have tried 'STS.exe -clean' and reverting installation(via new workbench) to a earlier configuration .. but nothing seems to work. I was driving it as a single tool (i.e. almost all dev. related tasks even like connecting to server, database) so this is very frustrating :-(. Any help would be greatly appreciated. !ENTRY org.eclipse.ui.workbench 4 2

SQL Query works in Workbench but get 'Could not convert variant type' error with the exact same query in Delphi

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-28 09:11:15
问题 The exact error i'm getting is Could not convert variant of type (UnicodeString) into type(Date). The variable I am using for the date is a string and I have to place quotation marks around it or else it returns null but when I put the quotation marks around it I get this error. Here is my code for the SQL Query and the variable TodaysDate . (This code isn't copy and pasted due to it being on a different machine without internet capabilities so please ignore anything that might cause a

Errno 121, duplicate key on write or update?

天大地大妈咪最大 提交于 2019-11-28 01:48:07
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES'; CREATE SCHEMA IF NOT EXISTS `mydb` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci ; USE `mydb` ; -- ----------------------------------------------------- -- Table `mydb`.`restaurants` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`restaurants` ( `id` INT NOT NULL AUTO_INCREMENT , `name` VARCHAR(128) NOT NULL , `description` VARCHAR(1024) NOT

MySQL--MySQL WorkBench--图形交互客户机的下载,安装与介绍

☆樱花仙子☆ 提交于 2019-11-27 23:02:05
我们发现安装完以后的MySQL是通过cmd来控制的,这样的话就非常的不方便了. 因为我们不能方便地查询其他功能. 在<MySQL必知必会>这本书中介绍到了两种图形交互客户机,分别是MySQL Administrator和MySQL Query Browser, 这两种图形交互客户机已经停止更新了,甚至是被淘汰了. 因此,我们需要下载MySQL的图形交互客户机MySQL WorkBench,这款的话还在时刻更新当中. 下面我来介绍怎么下载与安装MySQL WorkBench. 一.下载 1.地址: https://dev.mysql.com/downloads/workbench/ (点击网址进去,直接下载就可以) 二.安装 因为这是客户端,所以直接安装就行,没有任何难度. 三.介绍 1.打开桌面,就进入了登陆界面 点击账号,就可以登陆MySQL进行操作了. 2.接着,打开主界面进行操作,主界面如下图: (按照图片中的序号一个一个看,大概了解界面的布局) 3.首先先介绍菜单栏的内容 Files Edit 1 New model 建立新的数据库 1.主要是编辑MySQL的一些操作 2.New Query Tab 建立新的查询选项卡 2.比较简单,就不细说了 3.Open modl 打开以前建立的数据库 4.Open SQL Script 打开SQL脚本文件 View Query 1

How to put S4 extension field to CRM WebUI search view in the design time

半腔热情 提交于 2019-11-27 15:58:36
once query structure of dynamic query object is enhanced with S4 extension field, the S4 field will appear in WebUI component workbench automatically: this is ensured by Workbench framework: And in configuration view as well: 要获取更多Jerry的原创文章,请关注公众号"汪子熙": 来源: https://blog.csdn.net/i042416/article/details/99695065

MySQL Workbench charset

眉间皱痕 提交于 2019-11-27 14:21:33
问题 Does there exist any way to change the MySQL Workbench charset? My schema uses UTF-8 and when I view the table data (saved as UTF-8) or add data manually, it appears with charset errors, probably MySQL Workbench uses LATIN1. 回答1: I think OP was asking about charset that Workbench uses in its editor and how to setup Workbench to use UTF-8 in GUI - not how to setup default charset used for database table in Workbench. At the moment in Workbench one can set database table charset but regardless

Moving connections and instances between two computers

只谈情不闲聊 提交于 2019-11-27 10:41:20
问题 I´ve got a mysql-server that I´m administrate remotely with MySQL Workbench. Now I´ve got a new computer and I cant find any solution to move my connections and instances-profiles to my new computer. This can´t be an unsolved question, huh? Not the first time this would happen for someone else. Correction: It´s not the server-instances that I want to move. I need to export/move/backup my many client-profiles/instances-connections in MySQL Workbench. 回答1: I had the same questions. I found a

Eclipse workspace crashes on startup

淺唱寂寞╮ 提交于 2019-11-27 06:37:53
问题 I am using Spring Tool Suite(STS) 3.0.0 release (eclipse.buildId=3.0.0.201208091018-RELEASE-e42). It was running fine for a couple of months but lately my main workspace is crashing on splash screen with error as shown in last part of this post. I have tried 'STS.exe -clean' and reverting installation(via new workbench) to a earlier configuration .. but nothing seems to work. I was driving it as a single tool (i.e. almost all dev. related tasks even like connecting to server, database) so

Errno 121, duplicate key on write or update?

巧了我就是萌 提交于 2019-11-26 23:34:13
问题 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL,ALLOW_INVALID_DATES'; CREATE SCHEMA IF NOT EXISTS `mydb` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci ; USE `mydb` ; -- ----------------------------------------------------- -- Table `mydb`.`restaurants` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.