用conn /as sysdba登录数据库。一:先新建用户create user test01 identified by test02(test01为用户名,test02为用户密码)二:赋予数据库操作的基本权限grant connect,resource,dba to test01;三:创建表空间...
分类:
数据库 时间:
2014-07-06 23:54:12
阅读次数:
354
远程使用Navicat for mysql 客户端软件连接 mySql数据时,连接出现 2003-Can’t connect to MySQL on ’192.168.1.2’(10061)错误时,是由于MySQL不准许远程连接。修改方法如下: 1:在服务端MySQL文件夹下找到my.ini文件。修...
分类:
数据库 时间:
2014-07-06 22:15:12
阅读次数:
322
http://xxciof.blog.163.com/blog/static/7978132720095193113752/oracle中 connect by prior 递归算法Oracle中start with...connect by prior子句用法 connect by 是结构化查询中...
分类:
数据库 时间:
2014-07-06 21:22:08
阅读次数:
216
Looks like your app is ONLY available in Thailand storefront - so the lookup should include country code in the base lookup URL:http://itunes.apple.co...
分类:
移动开发 时间:
2014-07-06 15:28:03
阅读次数:
547
如果我们要检测app版本的更新,那么我们必须获取当前运行app版本的版本信息和appstore 上发布的最新版本的信息。当前运行版本信息可以通过info.plist文件中的bundle version中获取:NSDictionary *infoDic = [[NSBundle mainBundle]...
分类:
移动开发 时间:
2014-07-06 15:21:31
阅读次数:
189
iTunes进行程序和本地的文件交互很麻烦,这篇文章介绍如何在程序中实现沙盒文件的访问。...
分类:
移动开发 时间:
2014-07-03 16:37:49
阅读次数:
201
BLE 的链路层,主要有一个或多个状态机构成,状态机有5中状态,分别是 standby(待机), advertise(广播), scan(扫描), init(初始化),connect(连接).1.链路层上层是BLE 的Host 端(主机端), 下层是物理层(调制解调,RF等)。2.从空中的通道来看,...
分类:
其他好文 时间:
2014-07-03 13:01:42
阅读次数:
259
最近在linux上面用mysqldump导出数据,放在windows系统中导入就会出现中文乱码,然后就会导致出现: Unknown MySQL server host和Can't connect to the server的错误。解决mysql导入导出数据乱码问题就是统一导入导出的编码,linux默...
分类:
数据库 时间:
2014-07-02 18:53:23
阅读次数:
225
python 集成了 sqlite3 ,其接口很简单:import sqlite3db_connection = sqlite3.connect(db_filename)db_cursor = db_connection.cursor()db_cursor.execute('select * fro...
分类:
数据库 时间:
2014-07-02 17:46:35
阅读次数:
306
#!/usr/bin/pythonimportMySQLdbdefnew_mail_mysql(ak):printakconn=MySQLdb.connect(host=‘m3306.sae.sina.com.cn‘,user=‘sae_ol‘,passwd=‘7b149edb22ae7526‘,db=‘sae‘,port=3306)cur=conn.cursor()sql="selectnamefromappwhereaccesskey=‘%s‘"%akcur.execute(sql)app_name=cu..
分类:
数据库 时间:
2014-07-02 16:14:12
阅读次数:
285