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);