Questions tagged [adodb]

ActiveX Data Objects, developed by Microsoft, serve as a middleware for connecting to data sources. It enables users to retrieve data from databases without needing to understand the underlying database structure. Successor of RDO (Remote Data Objects) and DAO (Data Access Objects), ActiveX Data Objects were first introduced in 1996.

What happens to the arrays within my function?

I am working on a controller code: public function getChartData(){ $result["categories"] = array(); $result["series"] = array(); $sales = $this->db->Execute("select id_tenant, nama_kantin, count(id_penjualan) as jumlah_penjualan, s ...

The output string length varies between the development and production environments

Hey everyone, I'm just starting out with PHP so please be gentle ;) In my development setup, I'm using Windows 7 with XAMPP, and for live hosting, I have a LAMP stack ready to go. Currently, I am using ADODB to establish a connection with MSSQL and then ...