Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Cannot insert into MS Access Memo field with DBI

by simon.proctor (Vicar)
on Jan 06, 2002 at 18:37 UTC ( [id://136679]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    Set RS = Server.CreateObject("ADODB.RecordSet")
    RS.CursorLocation = adUseClient
    RS.Open table_name_or_sql_query, your_connection_object, adOpenKeyset
    
  2. or download this
    use constant adUseClient => 3;
    use constant adOpenKeyset => 1;
    
  3. or download this
    use Win32::OLE;
    use strict;
    ...
    $rs->CursorLocation(adUseClient);
    
    $rs->Open('test', $db_connection, adOpenKeySet);
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://136679]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (3)
As of 2024-04-26 00:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found