码迷,mamicode.com
首页 >  
搜索关键字:mysql--error:no query specified    ( 13873个结果
ezsql笔记
1.ezSQL是一个非常好用的PHP数据库操作类$db->get_results($sql,ARRAY_A);$db->get_row($sql,ARRAY_A);$db->get_row($sql);//得到一个值$db->query();// insert ,update ,delete.......
分类:数据库   时间:2014-08-28 18:02:15    阅读次数:223
ora-00054:resource busy and acquire with nowait specified解决方法
select t2.username,t2.sid,t2.serial#,t2.logon_time from v$locked_object t1,v$session t2 where t1.session_id=t2.sid order by t2.logon_time; 查看数据库都有哪...
分类:其他好文   时间:2014-08-28 13:10:59    阅读次数:156
Solr的一些查询参数
fl: 是逗号分隔的列表,用来指定文档结果中应返回的 Field 集。默认为 “*”,指所有的字段。defType: 指定query parser,常用defType=lucene, defType=dismax, defType=edismaxq: query。q.alt: 当q字段为空时,用于设...
分类:其他好文   时间:2014-08-28 13:04:49    阅读次数:272
Oracle Flashback命令手册
Flashback? Flashback query(undo)? select * from table_name as of timestamp ? to_timestamp(‘2008-03-03 12:00:00‘,‘yyyy-mm-dd hh24:mi:ss‘); select * from table_name as of scn 123456; ? Flashback ...
分类:数据库   时间:2014-08-28 11:43:49    阅读次数:290
ORA-12154: TNS:could not resolve the connect identifier specified
从文件连接数据库,连接字符串是finance/oracle@orcl 其中 finance是用户名,oracle是密码,orcl是实例名。发现这个问题:ORA-12154: TNS:could not resolve the connect identifier specified。TNS:无法解析...
分类:其他好文   时间:2014-08-28 11:06:39    阅读次数:223
使用DbUtils实现增删改查——ResultSetHandler 接口的实现类
在上一篇文章中《使用DbUtils实现增删改查》,发现执行runner.query()这行代码时,需要自己去处理查询到的结果集,比较麻烦。这行代码的原型是: public Object query(Connection conn, String sql, ResultSetHandler rsh, Object... params) 其中ResultSetHandler是一个接口,实际上,万能...
分类:数据库   时间:2014-08-28 09:43:39    阅读次数:274
PL/SQL Developer实现双击table表名查询
双击table默认为Expand/Collapse 展开/折叠 有时需快速查看该表数据,如果写select * from tab会显得麻烦,我们可实现双击table来进行快速查询方法为:Tools -> Preferences -> User Interface -> Browser -> Object type(Table) -> Double-click action(Query Data)...
分类:数据库   时间:2014-08-27 23:33:48    阅读次数:480
SQL基础
经过这几天我才发现原来我最弱的是数据库,好了现在就来补补吧SQL(Struct Query Language) 结构化查询语言,属于第四代语言(接近于自然语言)符合主谓宾定状补DDL (Data Define L)数据定义语言,创建一个数据库,创建一个表DML(Data Manage L)数据管理语...
分类:数据库   时间:2014-08-27 20:09:48    阅读次数:240
解决A program file was not specified in the launch configuration.问题
问题描述: 在eclipse 中开发c++或c是比较麻烦的事情,刚刚配置好mingw32和cdt和环境变量后,新建一个hello world的c++项目还是会出现问题。主要是在编译的时候会提示A program file was not specified in the launch confi.....
分类:其他好文   时间:2014-08-27 17:56:08    阅读次数:221
curl传递query string参数的转义
如果用curl访问http站点,要传递参数时,需要用\作为&的前缀。比如:http://myjenkins/job/run_schedule/buildWithParameters?token=fe80::c6d9:87ff:fe76:d1e9\&schedule_name=requirement_schedule...
分类:其他好文   时间:2014-08-27 16:39:58    阅读次数:481
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!