* Allison Christiansen

Home


This site includes academic coursework, my resume, and projects I have done for work. This also serves as a place to post code and other programming-related information that I have found useful.

I also offer professional web development services for individual and small businesses.

Update the Year in a DATETIME field (MySql) Share

October 22, 2008

UPDATE tablename SET column=column-INTERVAL YEAR(column) YEAR+INTERVAL new year YEAR WHERE ID="ID";

Comment

 

Fatal error: Uncaught SCA_RuntimeException: Instantiation of unknown type (PHP) Share

September 03, 2008

Fatal error: Uncaught SCA_RuntimeException: Instantiation of unknown type :http://Reward Reseller thrown in C:\...\Reward\SCA\Bindings\local\Proxy.php on line 138
This error is generated when using SCA for PHP. The cause of this error is most likely due to missing targetNamespace="http://Reward" in the xsd file

Comment

 

Backup an entire database to a file (MySql) Share

July 14, 2008

mysqldump --opt -u username -p database name > backup.sql

Comment