Hi,
When trying to insert blobs into SQL-Server Express
2005 I encounter problems.
I get the Error: [Microsoft][ODBC SQL Server
Driver]Fonctionnalité optionnelle non implémentée
Which in English means somemehting like non
implemented optional functionality.
I didn't have this problem before ( VW7.5 and
a previous version of SQL-server 2005 Express) and the same code works fine
with Acces.
Does anyone has an idea where to look or better
experience ?
Regards,
@+Maarten,
_______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
There is a known problem with SQL 2005
Express, if you’re using the new “SQL Native Client”
interface instead of “SQL Server” for your The only other AR I can think of (54544) involves
using threaded interface, and passing a very long literal String or ByteArray. Somehow
the literal isn’t handled properly within the call. The workaround for
this issue is to either use non-threaded, or ‘long … literal’
gcCopyToHeap instead. If these don’t match your situation,
we’ll need some more details. - Dave W From:
[hidden email] [mailto:[hidden email]] On Behalf Of Maarten MOSTERT Hi, When trying to insert blobs into SQL-Server Express 2005 I
encounter problems. I get the Error: [Microsoft][ODBC SQL Server
Driver]Fonctionnalité optionnelle non implémentée Which in English means somemehting like non implemented
optional functionality. I didn't have this problem before ( VW7.5 and
a previous version of SQL-server 2005 Express) and the same code works
fine with Acces. Does anyone has an idea where to look or better experience ? Regards, @+Maarten, _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
@+Maarten, Wallen, David a écrit :
_______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
In reply to this post by Maarten Mostert-2
Hi Carlos,
Well rememeber that Blobs are not treated the same way among different platforms. Some platforms only allow for updates and others only for inserts. That is why I use an intermediate objects which keeps track of the BloB in a platform independant way. For as far I know only PostgreSQL manages big blobs directly through Glorp. I do the other platforms with direct SQL comands as descriped in the manual, see also the example below. Regards, @Maarten, Carlos Crosetti a écrit : > Please send me the table description where you are insrting and the > glorp descriptor for that table. > -- > Carlos Crosetti _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
Free forum by Nabble | Edit this page |