Skip to content

Connect sqlsrv in Xampp

I have installed Xampp with a CodeIgniter installation. I want to connect from CodeIgniter to a SQL database. I changed the database config file and set the dbdriver to sqlsrv. $active_group = ‘…

Data type mismatch on SQL Query in VBA

I am trying to do an SQL query in VBA to retun a specific case number. Whenever I execute the query, it returns an error of “Data Type Mismatch in Criteria Expression”. I am passing the query an integer to use to query an autonumber primary key. Of course the debug hilights the execute command. An…

MS Outlook VB Programming

Hi im getting a incorrect syntax error when I run the following code in outlook 2010 VB Editor it appears to be happening where ive concatenated & myNamespace.CurrentUser & ” Following is …

Magento joining 2 tables

I want to join admin table and another profile table in magento how should I do this? I want to join $userModel = Mage::getModel(‘admin/user’); table and Answer Riaz.try the below code — Here suppose vendorprofile.vendor_id = main_table.entity_id is the relation between two tables. if you wa…