代码搜索:execute

找到约 10,000 项符合「execute」的源代码

代码结果 10,000
www.eeworm.com/read/242302/13076500

txt 如何用程序建立索引.txt

你可以使用SQL语句来实现。例如: DBconnect.execute("CREATE INDEX ...")
www.eeworm.com/read/242302/13077547

txt ado执行refresh语句说对象未打开.txt

你 的 SQL语 句 虽 然 看 起 来 正 确 , 但 是 RecordSource属 性 中 只 能 使 用 SELECT语 句 。 如 果 要 执 行 其 它 SQL语 句 , 必 须 使 用 Execute方 法 。
www.eeworm.com/read/124347/6052949

txt how-vfork-works.txt

Copyright 2001 Red Hat Inc., Christopher Faylor How does vfork work? When a program calls vfork, cygwin attempts to short circuit its normal, expensive fork mechanism. Vfork is mainly smoke and mir
www.eeworm.com/read/122834/6064425

vb command.vb

public interface Command Sub Execute() end interface
www.eeworm.com/read/122834/6064435

vb command.vb

public interface Command Sub Execute() End interface
www.eeworm.com/read/116211/6113406

java executor.java

/* * Copyright (c) 2003, Rafael Steil * All rights reserved. * Redistribution and use in source and binary forms, * with or without modification, are permitted provided * that the follow
www.eeworm.com/read/101135/6238893

2 chmod.2

.\" Copyright (c) 1980 Regents of the University of California. .\" All rights reserved. The Berkeley software License Agreement .\" specifies the terms and conditions for redistribution. .\" .\" @(#
www.eeworm.com/read/101082/6242123

c sys-func.c

main () /* this is a test for system call to execute date (1) */ { system ("date"); }
www.eeworm.com/read/127651/14345255

java command.java

public interface Command { public void Execute(); public void unDo(); }
www.eeworm.com/read/225326/14544810

java task.java

package compute; public interface Task { T execute(); }