开发者

Create table with field type text creating as memo

the following

            "CREATE table " & acObj.pullTBLNAME & " ( DATES number,A Text, B Text, C Text, D Text, E Text, F nu开发者_如何转开发mber, G number,H number)"  

is creating a table with data types of number and data types of MEMO not the desired type of TEXT.

any help would be greatly appreciated


Specify a field size:

"CREATE table " & acObj.pullTBLNAME & _
" ( DATES number,A Text(20), B Text(255), C Text, " & _
"D Text, E Text, F number, G number,H number)"


Also,

  (DATES number, A CHAR,...)

works as well.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜