摘要:
user=LF password=LF url=jdbc:oracle:thin:@localhost:1521:orcl driver=oracle.jdbc.driver.OracleDriver public class Utils_jdbc { ... 阅读全文
阅读排行榜
FMDB的简单使用
2016-05-06 13:39 by 甘雨路, 358 阅读, 收藏,
摘要:
#import @interface AppDelegate : UIResponder /** * 源代码的链接地址 * 链接: http://pan.baidu.com/s/1pKTxfyb 密码: eqa3 * */ @property (strong, nonatomic) UIWindow *window; @end #import "AppDelegate... 阅读全文
PL/SQL 存储函数和过程
2016-12-12 17:11 by 甘雨路, 347 阅读, 收藏,
摘要:
--存储过程 1.不带参: create or replace procedure 存储过程名 as|is --说明部分 begin --执行的语句; end; 调用存储过程 1 execute 存储过程名 --exec 存储过程名 2 在另外的plsql语句中直接调用 begin 存储过程名; 存储过程名; 存储过程名; end; crea... 阅读全文
用UIImageView作出动画效果
2015-06-25 23:42 by 甘雨路, 346 阅读, 收藏,
摘要:
#import "AppDelegate.h"@interface AppDelegate ()@end@implementation AppDelegate- (BOOL)application:(UIApplication *)application didFinishLaunchingWith... 阅读全文