--MySQL里创建外键时错误的解决--------------------------------2014/04/30在MySQL里创建外键时(Alter
table xxx add constraint fk_xxx foreign key),提示错误,但只提示很简单的信息:ERROR 1005...
分类:
数据库 时间:
2014-05-01 11:53:13
阅读次数:
443
到AndroidSDK官网下载ADT离线升级包然后在Eclipse中菜单Help->Installnewsoftware->Add->Archrive,选择下载回来的ADT离线更新包,确定!如果安装失败或什么的,可能要先卸装旧版本:Help->Installnewsoftware->alreadyi...
分类:
其他好文 时间:
2014-05-01 11:24:41
阅读次数:
328
在ndk中对项目点击Add Native
Support之后,自动生成的cpp文件有时候会出现Unresolved inclusion: 的提示,此时只需要点击一下工具栏中的“锤子”按钮即可
分类:
移动开发 时间:
2014-05-01 11:03:53
阅读次数:
904
Given an array of integers, find two numbers
such that they add up to a specific target number.The function twoSum should
return indices of the two nu...
分类:
其他好文 时间:
2014-05-01 08:35:40
阅读次数:
443
add by
zhj:非常完整的介绍了一个网站从小到大,后台的设计及服务器的部署的演进过程,太牛了。原文:http://blog.sina.com.cn/zgwangbo001话说今天是清明节假期第一天,早上早早的和朋友开车逃离了帝都。现在正在G104上缓慢的爬行。言归正传,计划了很久写这篇文章,不...
分类:
Web程序 时间:
2014-05-01 08:17:29
阅读次数:
528
在VC中使用WebBrowser控件的两方法黄森堂(vcmfc)著ClassWizard方式:1.创建包装类:View->ClassWizard->Add
Class->Form a Type
Library->C:\winnt\system32\shdocvw.dll->只选择IWebBrowse...
分类:
Web程序 时间:
2014-05-01 08:15:32
阅读次数:
470
1. 文件查看数据文件、控制文件、日志文件查看如下:select file#, status,
enabled, name from V$datafile;--查看数据文件select * from v$controlfile;--控制文件select *
from v$logfile;--日志文件...
分类:
数据库 时间:
2014-05-01 04:49:13
阅读次数:
471
exfat文件格式是唯一一个在OSX、win7和ubuntu系统下都能使用的文件格式,其能被osx和win7原生支持,并且支持4G以上的文件,但是ubuntu由于版权问题没法直接支持exfat,所以当插入该格式移动硬盘的时候会提示无法挂载,此时可以通过如下方法解决:
sudo add-apt-repository ppa:relan/exfat
加入新的PPA
s...
分类:
移动开发 时间:
2014-04-29 13:37:21
阅读次数:
425
# To enable ProGuard in your project, edit project.properties
# to define the proguard.config property as described in that file.
#
# Add project specific ProGuard rules here.
# By default, the flags ...
分类:
其他好文 时间:
2014-04-29 13:24:23
阅读次数:
443
Given two binary strings, return their sum (also a binary string).
For example,
a = "11"
b = "1"
Return "100".
思路同十进制的大数相加。代码如下:
class Solution {
public:
string addBinary(string a, str...
分类:
其他好文 时间:
2014-04-29 13:12:20
阅读次数:
328