会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Jane&Coding
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
7
下一页
2017年9月13日
MySQL: The user specified as a definer (' '@'%') does not exist
摘要: 今天在运行程序的时候得到错误: Caused by: java.sql.SQLException: The user specified as a definer ('ipdown'@'%') does not exist 在数据库中查看是一个视图的问题。视图创建的语句都是从服务器上直接备份过来的,
阅读全文
posted @ 2017-09-13 16:38 Jane&Coding
阅读(299)
评论(0)
推荐(0)
2017年9月7日
VMWare Workstatcion在Ubuntu下安装VMWare Tools
摘要: 安装完Ubuntu不能显示全屏,点击 “ 虚拟机-》重新安装VMWare Tools” 显示"正在进行简易安装时 无法安装tools"。 在本地VMWare 安装目录下,发现有window.iso和liunx.iso文件。 点击“虚拟机-》设置”,点击左侧“添加”->"CD/DVD驱动器",选择li
阅读全文
posted @ 2017-09-07 14:14 Jane&Coding
阅读(396)
评论(0)
推荐(0)
2017年8月23日
SQL TIPS:AUTO_INCREMENT, UUID()
摘要: 想重新设置auto_increment从1开始计数: ALTER TABLE tablename AUTO_INCREMENT=1; MYSQL中有UUID这个函数,但里面包含-,要取32位数字使用 REPLACE(UUID(),'-','') 但批量插入数据库的时候,REPLACE(UUID(),
阅读全文
posted @ 2017-08-23 14:28 Jane&Coding
阅读(221)
评论(0)
推荐(0)
2017年8月16日
Angular2&TypeScript:在html中使用enum显示相应内容: {{}}和select
摘要: 在ts中获取的数据为number类型,想在html中显示为对应的文字。 需要在ts中指定枚举类型的引用变量: ts: @Component({ selector: 'pakcage-privilege', templateUrl: './package-privilege.component.htm
阅读全文
posted @ 2017-08-16 14:38 Jane&Coding
阅读(2761)
评论(0)
推荐(0)
2017年8月15日
XX-Net: 用chrome连接www.google.com显示不是私密连接
摘要: 更新了chrome之后出现的问题 解决办法: 删除\XX-Net-3.1.19\data\gae_proxy路径下的certs文件夹,重启下XX-Net和chrome。
阅读全文
posted @ 2017-08-15 10:36 Jane&Coding
阅读(399)
评论(0)
推荐(0)
2017年8月8日
Tips: 文件由txt改后缀为html之后中文显示乱码
摘要: 1. 在html的<head>中添加 <meta charset="utf-8"> 2. 检查txt的保存格式,如果为ANSI,则另存为UTF-8格式
阅读全文
posted @ 2017-08-08 10:59 Jane&Coding
阅读(1070)
评论(0)
推荐(0)
2017年6月15日
Angular2 - Unhandled Promise rejection: Cannot assign to a reference or variable! ; Zone: <root> ; Task: Promise.then ; Value:
摘要: 当在html中定义的input 的名称 #name 与ts中class的属性名称相同,则会报该错。 参考: http://4dev.tech/2016/09/angular2-error-cannot-assign-to-a-reference-or-variable-zone-root-task-
阅读全文
posted @ 2017-06-15 13:58 Jane&Coding
阅读(2463)
评论(0)
推荐(0)
2017年6月5日
WPF Tips-当tab键获得焦点时textbox 全选
摘要: 如果值有单独的一两个textbox,可以对GotKeyboardFocus事件处理为SelectAll()。 但当工程中textbox数量比较多时,可以在App.xaml.cs中进行事件注册: 参考: https://social.msdn.microsoft.com/Forums/vstudio/
阅读全文
posted @ 2017-06-05 10:26 Jane&Coding
阅读(1473)
评论(0)
推荐(0)
2017年4月6日
getters/setters-C#,Java,TypeScript
摘要: C# Java TypeScript:
阅读全文
posted @ 2017-04-06 16:59 Jane&Coding
阅读(155)
评论(0)
推荐(0)
访问修饰符modifier-C#, Java,TypeScript
摘要: C#(https://msdn.microsoft.com/zh-cn/library/ba0a1yw2.aspx) public:访问不受限制。 protected:访问仅限于包含类或从包含类派生的类型。 Internal:访问仅限于当前程序集。 protected internal:访问限制到当
阅读全文
posted @ 2017-04-06 14:18 Jane&Coding
阅读(519)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
下一页
公告