开发者

Create table with field type text creating as memo

开发者 https://www.devze.com 2023-01-25 20:46 出处:网络
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)\"

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

精彩评论

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

关注公众号