Always be careful when checking adoRS.Fields(i).Name, the stringfor this property is case sensitive. If in a database there’s a field named BANK_BALANCE_AMT,RS.Fields(i).Name will not recognize “bank_balance_amt”: In such a case if you use, for example, IF statement such as:
If myRS.Fields(index).Name=”bank_balance_amt” Then…
you will not get expected results even if in the recorset myRSthere’s a field named “BANK_BALANCE_AMT”. This is false toward RS.Fields([field name]):RS.Fields(“bank_balance_amt”)=RS.Fields(“BANK_BALANCE_AMT”)
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.
Related Posts
- Understanding UNCOMPRESSED_LENGTH in MySQL
- Keeping Tabs on all Threads in Your Environment
- Orca AI secures $23M to enhance maritime industry with AI
- Volkswagen ID.3 Battery Capacity Concerns Raised
- Embarcadero Brings Millions of C++ and Delphi Developers to Windows 10 with its Latest RAD Product Release






















