UniDAC with Firebird Unicode Memo Fields
Posted: Fri 24 Dec 2010 19:29
Hi,
1 last issue to deal with in my UniDAC testing.
With IBDAC, I'm posting a Unicode Memo field and making sure to set
EnableIntegers := True;
Before I did this, I had problems. Now with UniDAC - it appears to be the same problem, but there isn't an EnableIntegers options that I can find.
I would think that this would be an option:
UniConnection1.SpecificOptions.Values['EnableIntegers'] := 'True';
But this doesn't work. Any ideas on how to get this posting properly with UniDAC?
I'm using this method in both IBDAC and UniDAC to push the data into the field (Where MemoTemp is my parameter for the memo data):
qLOOKUP2Tier.ParamByName('MEMOTEMP').DataType := ftWideMemo;
qLOOKUP2Tier.ParamByName('MEMOTEMP').AsWideString := mNotes2Tier.Lines.Text;
Thanks,
Rhett
1 last issue to deal with in my UniDAC testing.
With IBDAC, I'm posting a Unicode Memo field and making sure to set
EnableIntegers := True;
Before I did this, I had problems. Now with UniDAC - it appears to be the same problem, but there isn't an EnableIntegers options that I can find.
I would think that this would be an option:
UniConnection1.SpecificOptions.Values['EnableIntegers'] := 'True';
But this doesn't work. Any ideas on how to get this posting properly with UniDAC?
I'm using this method in both IBDAC and UniDAC to push the data into the field (Where MemoTemp is my parameter for the memo data):
qLOOKUP2Tier.ParamByName('MEMOTEMP').DataType := ftWideMemo;
qLOOKUP2Tier.ParamByName('MEMOTEMP').AsWideString := mNotes2Tier.Lines.Text;
Thanks,
Rhett