由买买提看人间百态

topics

全部话题 - 话题: eof
首页 上页 1 2 3 4 下页 末页 (共4页)
o*******p
发帖数: 722
1
in C++:
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
typedef vector> wcs;
bool myfakeless(pair a, pair b)
{
return (a.second>b.second);
}
wcs findkfwords(const char* fname, int k)
{
wcs results;
ifstream fs(fname);
if (k<1)
{
cerr << "bad k" < return resu... 阅读全帖
d*******l
发帖数: 338
2
来自主题: JobHunting版 - 求Debug,大大们当练手吧
我只知道linux下Ctrl-D是模拟EOF,windows好像是Ctrl-C
c****p
发帖数: 6474
3
没有。。。。。。
getchar()返回值是int,所以EOF返回-1,0xff返回255。
所以没问题。

char
m*********2
发帖数: 701
4
yea....
EOF is a special character, and is platform-dependent.
so, it doesn't have to be -1 or 0xFF
and, welcome to a programmer's life.
You are always f*cking working WITH other people's bug (in design or
implement)
l*********8
发帖数: 4642
5
来自主题: JobHunting版 - 请问一道题
Class Union
{
public:
Union(iostream & fin)
{
string a,b;
while(!fin.eof()) {
fin >> a >> b;
Merge(a, b);
}
}
inline Merge(const string &a, const string &b)
{
if (T.count(a) == 0)
T[a] = "";
if (T.count(b) == 0)
T[b] = "";
T[FindRoot[a]] = FindRoot[b];
}
const string & FindRoot(const string & s)
{
if (T[s].empty())
return s;
T[s] = FindRoot(T[s]);
return T[s];
}
inline bool CheckConnection(const string &a, const string &b... 阅读全帖
s***5
发帖数: 2136
6
来自主题: JobHunting版 - 问题:从电话号码打出所有单词
参加下面一个challenge,就是给定一系列电话号码,把每个号码对应的所有单词都按
字母顺序打印出来,并用,分隔。具体在这:
http://www.codeeval.com/open_challenges/59/
我下面的code提交就说不能通过所有的test cases,或者有warnings。谁大牛指出问题
所在!包子谢。
#include
#include
#include
#include
using namespace std;
void printWord(vector, string, string, bool&);
int main(int argc, char* argv[])
{
string pad1[10] = {"0", "1", "abc", "def", "ghi", "jkl", "mno", "pqrs",
"tuv", "wxyz"};
vector pad;
for(int i = 0; i < 10; i+... 阅读全帖
k*******2
发帖数: 84
7
我看之前的讨论,处理大file是先找EOF然后再读回去n行。请问n很大和n不是很大这两
个处理起来有什么区别吗?难道n不是很大应该在读回去的过程中buffer起来?多谢!
M**A
发帖数: 78
8
来自主题: JobHunting版 - 请教github上1道编程题的题意
请教各位朋友, 下面github上1道编程题的题意。
Write a program in C/C++ that translates a pattern specification
provided as ancommand line argument into a regular expression, processes
lines of input text receivedfrom stdin using that regular expression to
qualify matches, and finally writes eachmatching input line to stdout.
Each line of input is terminated by the newline character'n', and the
program should terminate when it receives EOF.The program should be
executable as follows:$ cat input.txt | ... 阅读全帖
p****o
发帖数: 46
9
来自主题: JobHunting版 - 问一个关于stringstream的诡异问题
you can check output position for insert (tellp) and input position for
extraction (tellg).
string str = "abc xyz";

stringstream stream(str);
// tellp() returns 0; tellg returns 0;

cout << stream.str() <
stream >> str;

// extract: input moves from 0 to 3 (tellg() ==3), which is the
whitespace position
cout << str < stream << str;
// insert: since no insertion so far, output position is still 0,
so it ... 阅读全帖
M**********s
发帖数: 8
10
来自主题: JobHunting版 - 这个题用四维DP怎么做呢?
以下讨论都先设m==n,也就是资料为方阵,complexity写起来比较简单
如果非方阵的话设N=max(m, n),big O还是对的
这题细节满多
我原本以为自己可以一次写对O(N^3)的解,但OJ发现有错
建议觉得自己能一次写对的人都试着自己写写看 http://soj.me/1767

四维DP的time complexity O(N^4)显然可以更好
如同前面说的三维可以达到time complexity O(N^3)
这题就是同时歸划两条左上角到右下角的不重疊路线,并最大化得分
要訣是每次同时考虑两条路线的同一步
设d为离左上角的曼哈頓距离
d=1第一步,考虑(0, 1), (1, 0)
只能选左线(0, 1)右线(1, 0)
d=2时一步,考虑(0, 2), (1, 1), (2, 0)
有左(0, 2)右(1, 1)、左(0, 2)右(2, 0)、左(1, 1)右(2, 0)三种选择
可以定义DP表dp[d][c1][c2]为
考虑左线进行到(r1, c1),右线进行到(r2, c2)时的最大得分
r1 = d - c1, r2 = d - c2
这也是前面有人提到用对... 阅读全帖
r****s
发帖数: 1025
11
来自主题: JobHunting版 - 发个evernote的code challenge
这应该很简单吧,什么unit test之类的就算了,考算法unit test个啥?
1. 首先定义separator, (空格,逗号,句号,quote,double quote,period, EOF)
2. loop through the string char by char,加到一个string buffer里面,遇到上面
定义的separator就返回一个word,同时reset string buffer。
3. count,可以用hashmap
4. 完了以后loop through hashmap, 找出topk。
应该很少的code,大约十几行就行了。
我觉得你的问题是shit load of code,简单的程序写得太多,一看就是没有经验 --
有经验的码工都烦复杂程序,很难debug。
f**********t
发帖数: 1001
12
来自主题: JobHunting版 - Linkedin 电面 面经x2
class FileIter {
ifstream _fin;
static const size_t kBufLen = 1024;
char _buf[kBufLen];
public:
FileIter(const char *fname) {
_fin.open(fname);
}
bool hasNext() {
return !_fin.eof();
}
string next() {
_fin.getline(_buf, kBufLen);
return string(_buf, _buf + _fin.gcount());
}
};
void FileIterTest() {
FileIter fi("iter.cpp");
while (fi.hasNext()) {
cout << fi.next() << endl;
}
}
h****g
发帖数: 105
13
来自主题: JobHunting版 - 问一个linkedin的面试题
应该是让你设计iterator的相关操作吧 *iter, iter->, iter++, begin(), end(),
operator== 之类的。比如 begin()返回一个指向第一行的iterator, end()是指向EOF
的iterator。 *iter 返回iter指向的这一行的字符串,iter++返回指向下一行的
iterator等等
k******4
发帖数: 7
14
为了防止违反NDA,就不列出公司名了,就是一些常见公司。
1. Write a iterator to iterate a nested array.
For example, for given array: [1, 2, [3, [4, 5], [6, 7], 8], 9, 10]
call iterator.next() 10 times should return 1,2,3,4,5,6,7,8,9,10.
用了stack存(array, index)的tuple。
2. LeetCode 原题,120 - Triange。有一点变种,给的是一维数组。
3. Implement HashTable 主要看dynamic expanding
4. Implement MaxHeap.
5. Topology sort,就是版上常见的给一些排过序的未知语言的词,求该语言的字母序
。要求实现核心算法。可以给出一些helper function定义不需实现。
6. LeetCode 付费题 157 & 158 - Read N Characters Given Rea... 阅读全帖
m******0
发帖数: 222
15
job=找个小姐,谁也不是干一辈子,跟wife是两个概念
再说你想给资本家打一辈子工,人家还不一定要你
别太把自己当回事,除非是高管,码工有什么职业规划,还不是哪家包裹大去哪家
哪天垃圾公司招人编码,能给800k包裹,一样挖狗家的人
以上几句话无可反驳,除非抬杠
eof
L***m
发帖数: 4594
16
【 以下文字转载自 SanFrancisco 讨论区 】
发信人: LAiam (老虎油), 信区: SanFrancisco
标 题: "Liquidated Damages" of CRA (加州标准购房和约 ) 的损害赔偿金?
发信站: BBS 未名空间站 (Sat Jun 23 02:45:16 2012, 美东)
似乎只说如果买方违约,定金将被卖方没收,丝毫没有提到卖方违约的惩罚,请问我的
理解对吗?有什么条款提到对卖方违约的惩罚的? 请懂行的说说。
25. Liquidated Damages: if buyer fails to complete this purchase because of
buyer's fault, Seller shall retain, as liquidated damages, the deposit
actually paid. If the property is a dwelling with no more than four units,
on eof which Buyer intends to occupy, than t... 阅读全帖
l**********r
发帖数: 1745
17
来自主题: NextGeneration版 - 有关Life insurance填写健康史的问题。
前两天上网填这个life insurance,发现要填以前看病的记录……
哎,我都没存过那些资料的,那些有记录的什么EOF的statement之类的(不知道是不是
这么叫的)搬家的时候不知道用碎纸机给碎了,还是放在哪个犄角旮旯里了……一时间
找不到了,头疼啊。
1.personal physician就是medical insurance 里的那个primary physician么?这个
必须填吗?
我记得2007年我有过primary physician,后来学校保险计划变了,我也跟着变了,印
象中就再没有指定过什么primary physician了…… 那这样的怎么填?
2. 2007年在我的primary physician那里做过一次一般的体检(physical exam),然
后07年,09,10年在不同的Ob那里各做过一次一般的那种妇科检查(gyn exam)。
10年看过一次emergency,感冒了,以为是N1h1 flu,结果就是一般的感冒……
--- 这些个要报告在那个什么most recent visit里面么?把每个医生的名字都写上?
3. 然后就是看牙医了... 阅读全帖
c**t
发帖数: 2744
18
来自主题: Working版 - 今天被一个同事给雷到了
有这么一段:
sub cmdButtonNameClick
dim str as String
do while !rs.EOF
..
str = str & "" & rs!fields... & ""
rs.MoveNext
loop
end
首先这个block了UI,其次根本没有必要,DB直接output xml不就结了?非要一条条的读
,这种string.Concat也是非常坏的style.
s********n
发帖数: 2071
19
来自主题: Immigration版 - 是否有EB1A直接被r eject的例子?
For sure. On eof my friends was rejected without RFE @TSC last year
w*s
发帖数: 7227
20
来自主题: Boston版 - 这家餐馆有人去过吗? (转载)
我老只顾洗碗,但插一句,你人品是在不怎样,eof.
l**********r
发帖数: 1745
21
前两天上网填这个life insurance,发现要填以前看病的记录……
哎,我都没存过那些资料的,那些有记录的什么EOF的statement之类的(不知道是不是
这么叫的)搬家的时候不知道用碎纸机给碎了,还是放在哪个犄角旮旯里了……一时间
找不到了,头疼啊。
1.personal physician就是medical insurance 里的那个primary physician么?这个
必须填吗?
我记得2007年我有过primary physician,后来学校保险计划变了,我也跟着变了,印
象中就再没有指定过什么primary physician了…… 那这样的怎么填?
2. 2007年在我的primary physician那里做过一次一般的体检(physical exam),然
后07年,09,10年在不同的Ob那里各做过一次一般的那种妇科检查(gyn exam)。
10年看过一次emergency,感冒了,以为是N1h1 flu,结果就是一般的感冒……
--- 这些个要报告在那个什么most recent visit里面么?把每个医生的名字都写上?
3. 然后就是看牙医了... 阅读全帖
L***m
发帖数: 4594
22
【 以下文字转载自 SanFrancisco 讨论区 】
发信人: LAiam (老虎油), 信区: SanFrancisco
标 题: "Liquidated Damages" of CRA (加州标准购房和约 ) 的损害赔偿金?
发信站: BBS 未名空间站 (Sat Jun 23 02:45:16 2012, 美东)
似乎只说如果买方违约,定金将被卖方没收,丝毫没有提到卖方违约的惩罚,请问我的
理解对吗?有什么条款提到对卖方违约的惩罚的? 请懂行的说说。
25. Liquidated Damages: if buyer fails to complete this purchase because of
buyer's fault, Seller shall retain, as liquidated damages, the deposit
actually paid. If the property is a dwelling with no more than four units,
on eof which Buyer intends to occupy, than t... 阅读全帖
L***m
发帖数: 4594
23
似乎只说如果买方违约,定金将被卖方没收,丝毫没有提到卖方违约的惩罚,请问我的
理解对吗?有什么条款提到对卖方违约的惩罚的? 请懂行的说说。
25. Liquidated Damages: if buyer fails to complete this purchase because of
buyer's fault, Seller shall retain, as liquidated damages, the deposit
actually paid. If the property is a dwelling with no more than four units,
on eof which Buyer intends to occupy, than the amount retained shall be no
more than 3% of the purchase price. Any excess shall be returned to Buyer.
Release of funds will require mutual , signed release inst... 阅读全帖
d********y
发帖数: 2114
24
正在学习richfaces写网页。
eclipse给我的jsf文件报error。
一个文件的开头这样的。
http://www.w3.org/TR/html4/loose.dtd">
http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:c="http://java.sun.com/jstl/core"
xmlns:sf="http://www.springframework.org/tags/fac... 阅读全帖
a********t
发帖数: 1810
25
来自主题: WashingtonDC版 - 谁会VB编程?给我讲讲
I 从1开始的. 一般都是从0开始.
我知道肯定是LOOP有问题.
这一公试全部CODE
'Read MDS Scores
For j = 1 To 6: vDenominator(j) = 0: Next
msg$ = FY + "MDSScores.csv"
Open (fPath$ + "P4P" + FY + "MDSscores.csv") For Input As #1
For j = 1 To 7: Input #1, xx$: Next
While Not EOF(1)
Input #1, xx$: For j = 1 To 6: Input #1, L$(j): Next
PIN(0, 1) = Val(xx$)
For i = 1 To nHomes
If PIN(0, 1) = PIN(i, 1) Or PIN(0, 1) = PIN(i, 2) Then Exit For
Next
For j = 1 To 6
If L$... 阅读全帖
vn
发帖数: 6191
26
来自主题: WashingtonDC版 - 谁会VB编程?给我讲讲
首先 你的表不是按i循环的 是那个While Not EOF(1) 在控制主循环
其次 这2个表行数都是nhomes对吗?就是说2个表其实可以拼一起?
S*******r
发帖数: 1560
27
来自主题: Baseball版 - 值得纪念的最后一天drama集锦
背景:ATL/STL tie for wildcard; BOS/TB tie for wildcard
主线1:
红雀第一局5:0,早早锁定最终8:0搞定。
勇士祭出仅剩一只靠谱先发Hudson,守完6局3:1领先。
第七局被打到一、三垒有人1out,并失误丢一分。换EOF上,两球GIDP解决。
第八局Venters,被打到满垒2out,3球K掉Ibanez。
第九局Kimbrel,一single一K之后突然失控,加上裁判好球带有点扯,两连保送到满垒。
Utley sac fly追平。又一个保送以后被换下,Melden解决最后一人。
拉锯到13局,终于Pence打出一个奇怪的一二垒之间跳跃安打,4:3。
13下Uggla站一垒1出局,Freeman GIDP结束比赛。
小结:死在两大ROY候选人。
主线2:
红袜 vs 金莺,波澜不惊打到mid 7,红袜3:2 rain delay。
扬基7:0领先光芒至mid 8,做大局已定状,抓吗就此开始。
single-double-hbp-walk-hbp,满垒无出局挤下两分。接下来Jennings被k,Upton sac
fly,龙哥三分炮... 阅读全帖
b*s
发帖数: 82482
28
来自主题: LeisureTime版 - ( 参赛)情书---光阴的故事
这个“鉴定完毕”完全是一个tautology,句号就行了。
在文件尾写一个end一样。EOF符就行了啊

女ID, 鉴定完毕。
w****i
发帖数: 383
29
来自主题: Joke版 - 一些笑话 - 学术求解

@ECHO OFF
SET /a balance = 0
IF %balance% LSS 10 (
SET /a balance = %balance% + 1
GOTO :yesterday
)
ECHO Wake up! sucker!
GOTO :EOF

发帖数: 1
30
经常发现没发出去,还要重新点击和confirmation submission
H********g
发帖数: 43926
31
哈哈,copy paste出来的小程序1号:读csv打印tab分隔的表格
csv2tab.pl
#读取test.csv,打印tab分隔的表格
use strict;
use warnings;
use Text::CSV;
my @rows;
my $csv = Text::CSV->new ( { binary => 1 } ) # should set binary attribute.
or die "Cannot use CSV: ".Text::CSV->error_diag ();
open my $fh, "<:encoding(utf8)", "test.csv" or die "test.csv: $!";
while ( my $row = $csv->getline( $fh ) ) {
push @rows, $row;
print join "t", @$row,"n";
}
$csv->eof or $csv->error_diag();
close $fh;
H********g
发帖数: 43926
32
小程序2,csv转换xls
#csv2xls.pl
use strict;
use warnings;
use Text::CSV;
use Spreadsheet::WriteExcel;
my @rows;
my $csv = Text::CSV->new ( { binary => 1 } ) # should set binary attribute.
or die "Cannot use CSV: ".Text::CSV->error_diag ();
open my $fh, "<:encoding(utf8)", "test.csv" or die "test.csv: $!";
my $rowcount=0;
while ( my $row_temp = $csv->getline( $fh ) ) {
push @rows, $row_temp;
print join "\t", @$row_temp,"\n";
$rowcount++;
}
$csv->eof or $csv->error_diag(... 阅读全帖
H********g
发帖数: 43926
33
升级版,可以读取命令行输入了
#csv2xls.pl
#>csv2xls.pl abcd.csv
#generages abcd.xls
use strict;
use warnings;
use Text::CSV;
use Spreadsheet::WriteExcel;
my $infile="test.csv" ;
if($ARGV[0]){$infile=$ARGV[0];}
my $basename=$infile;
$basename=~s/.csv//i;
my $outfile="$basename.xls";
my @rows;
my $csv = Text::CSV->new ( { binary => 1 } ) # should set binary attribute.
or die "Cannot use CSV: ".Text::CSV->error_diag ();
open my $fh, "<:encoding(utf8)", $infile or die "$infile: $!";
my $rowcount=... 阅读全帖
C****i
发帖数: 1776
34
CHAPTER V
Of Providence
I. God the great Creator of all things doth uphold,[97] direct, dispose, and
govern all creatures, actions, and things,[98] from the greatest even to th
e least,[99] by his most wise and holy providence,[100] according to his inf
allible foreknowledge,[101] and the free and immutable counsel of his own wi
ll,[102] to the praise of the glory of his wisdom, power, justice, goodness,
and mercy.[103]
II. Although, in relation to the foreknowledge and decree of God, the first
... 阅读全帖
C*****e
发帖数: 367
35
来自主题: TrustInJesus版 - Glossary to the Westminster Confession
【 以下文字转载自 Church 俱乐部 】
发信人: CCBible (神同在圣经), 信区: Church
标 题: Glossary to the Westminster Confession
发信站: BBS 未名空间站 (Tue Apr 24 21:16:33 2012, 美东)
Glossary to the Westminster Confession
Explanations of all archaic and uncommon words, usages, and expressions, in
the order in which they occur.
Title Confession. n. Public statement of religious beliefs.
1.1 Providence. n. Divine care. Manifest. v. Show. Are they. idiom. T
hey are. Unto. prep. With regard to. Sundry. adj. Separate. D... 阅读全帖
o*****s
发帖数: 1445
36
发信人: majialily (lily), 信区: Chemistry
标 题: Re: 进了家新公司,要疯了
发信站: BBS 未名空间站 (Sat Feb 2 22:10:03 2013, 美东)
面试一顿吹牛,说我啥都会。
但是当时问了我van derr meet 方程 和EOF 我都没答上来。
j**h
发帖数: 173
37
来自主题: Apple版 - google确实是最容易被追上的
Two points:
1. Search requires huge investment in data centers (and probably internet
fiber backbone), and in the long-
term it requires better energy solution to keep competitive edges. And
Google has a big advantage over all
rivals there.
But,
2. Most of Google's profit comes from search ads, which some people says is
in a bubble:
http://www.linuxjournal.com/magazine/eof-google-exposure
w********2
发帖数: 16371
38
☆─────────────────────────────────────☆
fantastli (早晨从中午开始) 于 (Thu Feb 16 14:21:13 2012, 美东) 提到:
原帖链接在此:
http://www.mitbbs.com/article_t/Apple/31507369.html
在我发此贴之前,我已经和版主信件交流过了
但是版主以‘飞马座’误解我的原帖,并且已经马赛克为由,拒绝履行版务职能
我在此,正想提醒版主,对事不对人,希望你不要像以前aaaty那样用双重标准对待不
同的ID
也希望斑竹能偶切实履行你在竞选发言中的所提到的东西
☆─────────────────────────────────────☆
fantastli (早晨从中午开始) 于 (Thu Feb 16 14:24:08 2012, 美东) 提到:
另外,我在本版正常回答版友问题
飞马座张口就说我‘乱喷’
请问版主,当初你不能容忍别人说‘aaaty赖在这个位置上’,而且又以‘自己不是红
袖章’为名,对于其他果版ID粗口置之不理
那么现在,你坐在版主这个位置上了... 阅读全帖
t*******d
发帖数: 1530
39
来自主题: BuildingWeb版 - php动态捕获外部命令输出的问题
把外部命令结果pipe到tmp_file, 然后 PHP reads this tmp_file every seconds
until you want it reads EOF.
Y********6
发帖数: 28
40
刚开始学,第三堂课就遇到困难。。。实在弄不出来。。。
题目是这样的
* Write a program that reads from a file called input.txt until the file
contains the word end.
* For each word you encounter, you will determine if the word is
alphabetically before or after the previous encountered word.
* For a word that is alphabetically after the previous word, write the word
to the screen and then say AFTER. For words that are before the previous,
write the word BEFORE. For the first word, write COMES FIRST. For words that
are the same, wr... 阅读全帖
n**********e
发帖数: 1
41
来自主题: Database版 - 遇到sql 的日期型字段不会使用
使用asp 和foxpro 相结合对数据库进行管理,源程序如下


欢迎使用


<%
set cn=Server.CreateObject("ADODB.Connection")
cn.open "tt_vfp"
sqlquery="select * from ttp where 工序号='TC15'"
set rs=cn.execute(sqlquery)
'rs.movefirst
%>

<%i=1%>
<%do while not rs.eof%>






<%newvar=rs.fields("日期")%>

<%
i=i+1
r
<%=i%> <%=rs.fields("工作单")%> <%=rs.fields("工序号")%> <%=rs.fields("录入人")%> <%=rs.fields("日期")-3%> <%=newvar%>
")
for each x in rs.Fields
Response.Write("")
next
Response.Write("")
rs.MoveNext
loop
end sub
%>


n******n
发帖数: 602
42
来自主题: Database版 - [转载] 如何调试这个ASP程序?
【 以下文字转载自 Programming 讨论区 】
【 原文由 nicolson 所发表 】
这个ASP会打出数据库所有内容。但是弟一次访问 ADO database可以,
马上refresh 就会报错, 停在conn.open "db" 上,请高手畅言!


<%
sub showItemTracking(rs,detail)
do until rs.EOF
Response.Write("
" & x.value & "
e*****g
发帖数: 20
43
来自主题: Database版 - SQL Server查询页面处理问题
我一直用如下的语句来得到查询的某一页
rst.PageSize = pagesize;
rst.AbsolutePage = pageno;
然后用
while( (!rst.Eof) && (rowcount < rst.PageSize) ) {
...
rst.MoveNext();
}
来访问改页内的每一条记录。
现在的问题是:如果还有另外一个查询需要同时参加排页怎么办?
最简单的情况,比如有目录和文件进行排页,要求目录在前,
在查询文件的时候,应该怎么处理啊?
当然两个查询的fields各不相同,能放在同一查询里面吗?
还是有什么别的办法处理?
请教各位大侠,谢谢。
m*******n
发帖数: 370
44
来自主题: Database版 - rsArray 为啥写不全? (转载)
请高人帮我看看,同样的一段code,如果database连Access, rsArray里可以正常写入所有的
fields,但是如果连SQL server就只能写入NomID和Categories.Description,其他都为
空.我把strQ对应的select语句放到SQl server里去run,结果也是对的,每个field都显示
了,但为什么没有能够被读到里rsArray呢? rsArray = objRS.GetRows()为什么没能读
全?
Set objRS = Server.CreateObject("ADODB.Recordset")
Set objRS.ActiveConnection = Connection
strQ = "SELECT NominationDetailsCurrent.NomID, Title, OrderNo, Letter,
CategoryName, Categories.Description, Categories.Weight " & _
"FROM (NominationDetailsCurrent LEFT JO... 阅读全帖
m*******n
发帖数: 370
45
来自主题: Database版 - rsArray 为啥写不全? (转载)
我把"If Not objRS.EOF Then" comment out了,发现是data type的问题:
The strQ is: False
ADODB.Recordset error '800a0bb9'
Arguments are of the wrong type, are out of acceptable range, or are in
conflict with one another.
所以应该改database里的data type吗? 之前在access里用的是text/memo,现在MS SQL用的
是nvarchar(255)/nvarchar(max).不觉得有什么问题啊?
m*******n
发帖数: 370
46
来自主题: DotNet版 - rsArray 为啥写不全?
请高人帮我看看,同样的一段code,如果database连Access, rsArray里可以正常写入所有的
fields,但是如果连SQL server就只能写入NomID和Categories.Description,其他都为
空.我把strQ对应的select语句放到SQl server里去run,结果也是对的,每个field都显示
了,但为什么没有能够被读到里rsArray呢? rsArray = objRS.GetRows()为什么没能读
全?
Set objRS = Server.CreateObject("ADODB.Recordset")
Set objRS.ActiveConnection = Connection
strQ = "SELECT NominationDetailsCurrent.NomID, Title, OrderNo, Letter,
CategoryName, Categories.Description, Categories.Weight " & _
"FROM (NominationDetailsCurrent LEFT JO... 阅读全帖
t******g
发帖数: 10390
47
来自主题: Internet版 - 求一程序
我正好有一个用perl写的,可以在linux下用.
#!/usr/bin/perl
$mailprog='/usr/lib/sendmail -t';
#打开邮件列表文件.
open (FILE, "email.txt");
@file=;
close (FILE);
#分解邮件列表成名字和地址.
foreach $file_line(@file)
{ ($name, $emailaddress)=split(/\|/, $file_line);
&sendpass;
}
#发信
sub sendpass {
open (MAIL,"| $mailprog") || die "Mail system error";
print MAIL "to: $emailaddress";
print MAIL "Subject: 标题换成自己的\n";
print MAIL "From: xxx\@hotmail.com\n";
print MAIL < Dear $name:
这里是信的内容,不过注意一些特殊字符可能导致出错,比如@需要写成\@才可以.上面的@也一样处
g*****g
发帖数: 34805
48
You'd better provide the piece of readInt(String) code
and the format of your text file, or nobody can help
you out. To me you are trying to read beyond EOF.
f*****g
发帖数: 31
49
来自主题: Java版 - ask a question about C

use fstat/stat to count your file's size. read
the size of byte instead of checking if EOF is reached.
m******t
发帖数: 2416
50
来自主题: Java版 - pipe & filter 问题

Well, I suppose we could use binary insert _while_ each line is read in, and
output all of them when the EOF comes.
Granted we would still have to have everything in memory at one point though
. There is no getting around that.
首页 上页 1 2 3 4 下页 末页 (共4页)