代码搜索:Sensitive
找到约 1,776 项符合「Sensitive」的源代码
代码结果 1,776
www.eeworm.com/read/295753/8142088
pro chapter14happyyou3dscontrol.pro
; Chapter14HappyYou3DSControl.pro
;----------------------------------------------------------------------------
function Chapter14HappyYou3DSControlMakeView, xdim, ydim, uval
aspect = xdim / floa
www.eeworm.com/read/307838/13714077
mak win_cvf.mak
SOURCE=fft
CMPFLAG=/compile_only /math_library:fast /real_size:64 /debug:none /optimize:5 /assume:noaccuracy_sensitive /nologo /warn:nofileopt \
/include:"$(MATFOR4DIR)\include\cvf"
LIBFLAG=fm
www.eeworm.com/read/304712/13788852
txt mysql.txt
Class.forName("org.gjt.mm.mysql.Driver").newInstance();
//datebase为你的数据库名
String url ="jdbc:mysql://localhost/datebase?user=""&password=""&use
Unicode=true&characterEncoding=8859_1";
//创建数据库连接
C
www.eeworm.com/read/304712/13788853
txt postgresql.txt
Class.forName("org.postgresql.Driver").newInstance();
//datebase为你的数据库名
String url ="jdbc:postgresql://localhost/datebase";
//设置登录用户名
String user="myuser";
//设置登录密码
String password="mypassword";
www.eeworm.com/read/304712/13788857
txt informix.txt
Class.forName("com.informix.jdbc.IfxDriver").newInstance();
//datebase为所要连接的数据库名
String url ="jdbc:informix-sqli://123.45.67.89:1533/datebase:INFORMIXSERVER=myserver;
//设置登录用户名
user=testuser;
//设
www.eeworm.com/read/304712/13788865
txt db2.txt
Class.forName("com.ibm.db2.jdbc.app.DB2Driver ").newInstance();
//datebase为所要连接的数据库名
String url="jdbc:db2://localhost:5000/datebase";
//设置登录用户名
String user="admin";
//设置登录密码
String password="";
www.eeworm.com/read/304712/13788869
txt sybase.txt
Class.forName("com.sybase.jdbc.SybDriver").newInstance();
//datebase为所要连接的数据库名
String url =" jdbc:sybase:Tds:localhost:5007/datebase";
Properties sysProps = System.getProperties();
//设置登录用户名
SysP