comm

Failed to execute COM class: com4j.ComException: 80040154 CoCreateInstance failed : Class not registered : .\com4j.cpp:153

元气小坏坏 提交于 2019-12-11 17:36:17
问题 I'm trying for some days to execute a ".dll" file from an JAVA application. If you are interested you can read my first question: Call a .dll function using command line I used "com4j" to create the COM classes for my DLL. The generated classes looks good and I tried to execute the code, more exactly a method called "getUnitInfo" located in a class called "_Tester": @DISPID(1610809376) //= 0x60030020. The runtime will prefer the VTID if present @VTID(8) int getUnitInfo( java.lang.String

Print differences between not sorted strings from files

醉酒当歌 提交于 2019-12-11 06:50:10
问题 I have two files that contain n lines with a string in each line. I want to print out the difference in characters between those lists. You could imagine the operation as a sort of "Subtraction" of letters. This is how it should look like: List1 List2 Result AaBbCcDd AaCcDd Bb AaBbCcE AaBbCc E AaBbCcF AaCcF Bb Which means that the second list is not sorted alphabetically, but all the substrings to remove are sorted within each string ( Aa comes before Bb comes before Cc ). Note that the

Oracle数据库SELECT语句的使用

谁都会走 提交于 2019-12-10 07:56:26
SELECT语句是数据库中使用频率非常高的语句,就像进入淘宝,京东百度这样的网站往往首先做的事情就是查询;所以查询语句十分重要,需要好好学习,熟练掌握; SELECT基本语句格式: SELECT 查询字段 FROM 数据源 WHERE 条件语句 ORDER BY 排序字段 SELECT的具体使用: --查询所有的员工信息 --查询的数据: * 所有的员工信息 --数据的来源: 员工表 emp --条件: select * from emp ; select * from dept ; SELECT多字段的查询: --select 字段1,字段2... from 数据源; select ename , comm from emp where comm is not null ; SELECT别名: 直接在字段后添加别名即可,中文直接添加,小写的字母需要使用" “英文双引号包裹,”"表示原样输出 --select 字段1,字段2... from 数据源; select ename 员工姓名 , comm 奖金 from emp where comm is not null ; SELECT条件查询WHERE的使用: --条件查询 select 数据 from 数据源 where 行过滤条件; --条件比较符: = > < >= <= != <> --逻辑连接符:and or not -

《SQL CookBook》 简单查询汇总

寵の児 提交于 2019-12-10 05:15:11
下载了《SQL CookBook》 ,认真专研一下,基础是很重要的,是时候拾回那些悄悄溜走的知识了。 1. 查询结果排序 1.1 显示部门 10 中的员工名字、职位和工资,并按照工资的升序排列。 select ename,job,sal from emp order by sal asc; 1.2 在 EMP 表中,首先按照 DEPTNO 的升序排序,然后按照工资的降序排列。 select empno,deptno,sal,ename,job from emp order by deptno asc,sal desc 1.3 从 EMP 表中返回员工名字和职位,并且按照职位字段的最后两个字符排序。 select ename,job from emp order by substr(job,length(job)-2); 1.3 在 EMP 中根据 COMM 排序结果,处理控制排在最后。 select ename,sal,comm from ( select ename,sal,comm ,case when comm is null then 1 else 0 end as is_null from emp) x order by is_null,comm; 1.4 如果 JOB 是“ SALESMAN ” , 要根据 COMM 来排序。否则,根据 SAL 排序。 select

索引,索引的建立、修改、删除

China☆狼群 提交于 2019-12-07 16:45:59
索引 索引是关系数据库中用于存放每一条记录的一种对象,主要目的是加快数据的读取速度和完整性检查。建立索引是一项技术性要求高的工作。一般在数据库设计阶段的与数据库结构一道考虑。应用系统的性能直接与索引的合理直接有关。下面给出建立索引的方法和要点。 §3.5.1 建立索引 1. CREATE INDEX命令语法: CREATE INDEX CREATE [unique] INDEX [user.]index ON [user.]table (column [ASC | DESC] [,column [ASC | DESC] ] ... ) [CLUSTER [scheam.]cluster] [INITRANS n] [MAXTRANS n] [PCTFREE n] [STORAGE storage] [TABLESPACE tablespace] [NO SORT] Advanced 其中: schema ORACLE模式,缺省即为当前帐户 index 索引名 table 创建索引的基表名 column 基表中的列名,一个索引最多有16列,long列、long raw 列不能建索引列 DESC、ASC 缺省为ASC即升序排序 CLUSTER 指定一个聚簇(Hash cluster不能建索引) INITRANS、MAXTRANS 指定初始和最大事务入口数 Tablespace 表空间名

CentOS7 Xftp 上传文件 错误

杀马特。学长 韩版系。学妹 提交于 2019-12-07 03:45:45
上传文件显示 错误 ,详情提示: xftp permission is not allowed 修改权限 chmod chmod 777 目标文件夹 参考资料 Linux chmod命令 https://www.runoob.com/linux/linux-comm-chmod.html 来源: CSDN 作者: 笑虾 链接: https://blog.csdn.net/jx520/article/details/90356512

How to get the output from the comm command into 3 separate files?

牧云@^-^@ 提交于 2019-12-06 07:32:33
The question Unix command to find lines common in two files has an answer suggesting the use of the comm command to do the task: comm -12 1.sorted.txt 2.sorted.txt This shows the lines common to the two files (the -1 suppresses the lines that are only in the first file, and the -2 suppresses the lines only in the second file, leaving just the lines common to both files as output). As the file names suggest, the input files must be in sorted order. In a comment to that question, bapors asks: How would one have the outputs in different files? Seeking clarification, I asked: If you want the lines

进程间通信 IPC interprocess communication

做~自己de王妃 提交于 2019-12-06 03:47:21
1,管道,FIFO 2, 信号 3,消息队列 4,共享类存 5.文件映射 6.socket ( 1 )管道(Pipe):管道可用于具有亲缘关系进程间的通信,允许一个进程和另一个与它有共同祖先的进程之间进行通信。   ( 2 )命名管道(named pipe):命名管道克服了管道没有名字的限制,因此,除具有管道所具有的功能外,它还允许无亲缘关系进程间的通信。命名管道在文件系统中有对应的文件名。命名管道通过命令mkfifo或系统调用mkfifo来创建。   ( 3 )信号(Signal):信号是比较复杂的通信方式,用于通知接受进程有某种事件发生,除了用于进程间通信外,进程还可以发送信号给进程本身;linux除了支持Unix早期信号语义函数sigal外,还支持语义符合Posix.1标准的信号函数sigaction(实际上,该函数是基于BSD的,BSD为了实现可靠信号机制,又能够统一对外接口,用sigaction函数重新实现了signal函数)。   ( 4 )消息(Message)队列:消息队列是消息的链接表,包括Posix消息队列system V消息队列。有足够权限的进程可以向队列中添加消息,被赋予读权限的进程则可以读走队列中的消息。消息队列克服了信号承载信息量少,管道只能承载无格式字节流以及缓冲区大小受限等缺   ( 5 )共享内存:使得多个进程可以访问同一块内存空间

跨平台开源通讯组件elastic communication

China☆狼群 提交于 2019-12-05 23:19:45
    elastic communication是基于c#开发支持.net和mono的通讯组件(简称EC),EC的主要目的简化mono和.net下的通讯开发难度,通过EC可以非常快速地开发基于mono和.net的通讯交互应用。EC抽取的基础的通讯协议默认支持protobuf,msgpack的数据对象进行通讯交互,开发者不可以根据自己的制要制订更多的序列化方式支持;EC不紧紧支持简单的对像传输,还提供了控制器,方法控制器和更方便的远程接口调用功能。     以下是ES希望实现的最终目标          借助于Xamarin实现不同移动端的实现,由于这一块个人工作原因还没细化实现,通过开源相关代码可以让感兴趣的人更好进一步去完成相关功能。 功能简介     EC实现通讯功能是非常方便的事情,下面通讯简单的几种场景来介绍一下EC在通讯上的应用。 HelloWord 服务端 namespace HelloWord.Server { [Controller] public class Program { static void Main( string [] args) { ECServer.Open(); System.Threading.Thread.Sleep( - 1 ); } public string HelloWord(ISession session,Hello e) {

MySQL练习与小结

时光怂恿深爱的人放手 提交于 2019-12-05 18:07:01
当你专注一件事的时候,时间总是过得很快! foreign key 练习 -- 切换数据库 use stumgr -- 删除班级表 drop table t_class1 -- 创建一个班级表 create table t_class1 ( cno int auto_increment not null, cname varchar (12) not null, room int (4), primary key (cno) ); -- 查看班级表 desc t_class1 -- 添加班级数据 insert into t_class1 values (null,'Javay1班',501),(null,'Javay2班',502),(null,'大数据1班',401); -- 查看班级表信息 select * from t_class1 -- 清空班级表数据 truncate table t_class1 -- 删除学生表 drop table t_student1 -- 创建学生表 create table t_student1 ( sno int primary key auto_increment, name varchar (20), sex char (1) default '男', age int, classno int, constraint fk_t