Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Creat Tmp Recordset with adMemo
Message
De
01/07/2000 01:05:28
 
Information générale
Forum:
Visual Basic
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00386954
Message ID:
00387273
Vues:
18
>>Creating a memory Recordset, I need a field to be Memo data type
>>like the example below. Is there such data type as adMemo?
>>I checked the help file but couldn't find it. Any advise? Thanks.
>>
>> Set rstMemory = New ADODB.Recordset
>> With rstMemory
>> .CursorLocation = adUseClient
>> .LockType = adLockPessimistic
>> .Fields.Append "TypeCode", adChar, 20
>> .Fields.Append "TypeName", adChar, 50
>> .Fields.Append "Amount", adCurrency
>> .Fields.Append "Remarks", ????? (need a Memo data type)
>> .Open
>> End With
>
>According to >http://msdn.microsoft.com/library/officedev/off2000/acdatComparisonDataTypes.ht>m, you should use adLongVarWChar.

I tried to declared this but has Type Mismatch error:
.Fields.Append "Remarks", adLongVarWChar

But if I do this, then it is OK
.Fields.Append "Remarks", adLongVarWChar, 255

Do I need to specific the Length of the memo field?
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform