码迷,mamicode.com
首页 >  
搜索关键字:select any table    ( 76993个结果
ORA-28002: the password will expire within 7 days 解决方法(后面部分为拷贝,前面加上了自己遇到的问题的时候解决方案)
首先以管理员密码登录 如果发现仍然登录不进去了,可以将Oracle安装的Linux的系统时间提前,修改方法是: date -s 04/29/2014 date -s 17:52:00 clock -w   1. 查看用户的profile设置: SELECT username,profile FROM dba_users;   SELECT username,profil...
分类:其他好文   时间:2014-07-22 23:03:54    阅读次数:423
判断标准I/O的缓冲区类型
#include void pr_stdio(const char *, FILE *);int main(){ FILE *fp; fputs("enter any character\n",stdout); if(getchar()==EOF) printf("getchar error");....
分类:其他好文   时间:2014-05-01 20:18:16    阅读次数:321
Microsoft Azure开发体验 – 网络报名系统
本文通过Azure Website 和 Azure Table Storage 打造一个网络报名系统,介绍Azure的开发体验,感受云的力量。
分类:其他好文   时间:2014-05-01 20:07:49    阅读次数:494
java
java中基本类型内存中所占字节整理整类型 类型内存中所占字节byte所占位bit可表示数字个数byte182的8次方short2162的16次方int4322的32次方long8642的64次方字符类型 类型内存中所占字节byte所占位bit可表示数字个数char2162的16次方浮点...
分类:编程语言   时间:2014-05-01 19:51:38    阅读次数:388
最近玩了一下qt5.2.1,顺着写点东西,关于这个版本设置程序主窗口居中
#include #include #include #include "qtquick2applicationviewer.h"int main(int argc, char *argv[]){ QGuiApplication app(argc, argv); QScreen *scr...
分类:其他好文   时间:2014-05-01 19:30:41    阅读次数:274
利于Wininet创建一个FTP客户端的步骤
Wininet是Win32关于网络的API,MFC也有对于Wininet的封装,可以利用这组API实现FTP和HTTP通信。Wininet API的头文件:Wininet。下面是Wininet建立FTP客户端的一般步骤。第一步:初始话Wininet,实际上就是设置一些关于是否使用代理,访问方式等的参...
分类:Windows程序   时间:2014-05-01 19:27:18    阅读次数:421
从MYSQL数据库查出指定格式的日期
1、用SQL语言控制:格式如下:select DATE_FORMAT(t.startTime,"%Y-%m-%d %H:%i") AS startTime,DATE_FORMAT(t.endTime,"%Y-%m-%d %H:%i") AS endTimefrom table输出格式为:YYYY-m...
分类:数据库   时间:2014-05-01 19:04:54    阅读次数:847
[GodLove]Wine93 Tarining Round #4
比赛链接:http://acm.hust.edu.cn/vjudge/contest/view.action?cid=44903#overview题目来源:2011 Asia ChengDu Regional ContestWine93有话说:爆0, oh-year!IDOriginTitle13/...
分类:Windows程序   时间:2014-05-01 18:48:35    阅读次数:436
archlinux xfce conky 设置
~/.conkyrc# Conky, a system monitor, based on torsmo## Any original torsmo code is licensed under the BSD license## All code written since the fork of...
分类:系统相关   时间:2014-05-01 18:42:00    阅读次数:580
Lua print table(类似PHP中的print_r/var_export)
会PHP的人都知道PHP中的print_r/var_export函数,可以方便的用于打印数组或导出变量,Lua中没有提供,实际应用中却是很多时候需要类似的功能。 今天便封装了个简单函数,实现类似功能,用来打印/导出table:...
分类:Web程序   时间:2014-04-30 22:22:39    阅读次数:392
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!