Geeky things

SQL Concat - Updating a column with the contents of another column

Recently i had a small task of updating a database column with the contents of two other database columns.

I was trying to use a '+' or a '&', but SQL likes the concat function.

The below snippet appends the product model to the front of the products name and adds a space.

update products_description inner join products on products_description.products_id = products.products_id set products_description.products_name = concat(products.products_model, concat(' ', products_description.products_plain_name));

[...]
Published on Sat, 27 Oct 2007 04:44

SOAP UI Eclipse Plugin

SOAP UI is a valuable tool for creating SOAP requests and responses.



There is a stand alone application and an Eclipse plugin.



http://www.soapui.org/eclipse/index.html


[…]

Published on Thu, 07 Jun 2007 23:47

My Stumbling Points with Setting up an SVN Server

I am currently in the process of starting up a project which requires source control managment and external access for multiple users. SVN is what i’ve used in the past and it remains my favorite tool.

SVN is a command line source control client, unless you have a client like tortoise, or subclipse.

Name: Subclipse 1.2.x (Eclipse 3.2+)

URL: http://subclipse.tigris.org/update_1.2.x

Name: Subclipse 1.0.x (Eclipse 3.0/3.1)

URL: http://subclipse.tigris.org/update_1.0.x

Installing can be cumbersome as it requires you to run multiple executables…unless you have SVN One Click for the installation. This is a great tool for setting up the server itself, not just the client.

When it comes time to setting up user names and passwords and configuring the server, you must note that the default install location is: C:\svnrepos\conf\

The passwd file manages users and passwords. The authz files managers user permission relative to repositories, and the svnserve.conf manages the the settings.

A big, note and my big stumbling point was with the uncommenting of the following lines:

anon-access=read auth-access=write password-db=passwd

Make sure that there are no spaces before these, otherwise you will get some Option 12 SVN error.[…]

Published on Tue, 13 Mar 2007 07:51

MusicBrainz - Tagging

http://musicbrainz.org/

This is a very cool way to tag your music library. They also have an open API.[…]

Published on Mon, 17 Jul 2006 23:31

Using SVN (Subversion) with Eclipse

I just saw this post on Digg, and wanted to have a more permanent link to the article.[…]

Published on Sat, 15 Jul 2006 03:37

Parallels Virtualization Software

http://www.parallels.com/en/products/desktop/

This looks pretty amazing. TJ tell the Chief about this…[…]

Published on Sat, 10 Jun 2006 00:52

IE 7 Beta

I just downloaded and installed IE 7 Beta…so far so good. Looks much, much better than IE6. It’s similar to Opera. They’ve lost the File menus. I dig it…

http://www.microsoft.com/windows/ie/downloads/default.mspx[…]

Published on Tue, 06 Jun 2006 00:41

Embedding Flash in Your Blog

http://www.kimili.com/plugins/kml_flashembed/wp[…]

Published on Thu, 01 Jun 2006 02:12

Code Insert Test

[as]private function onCancelWinInit():Void{ cancelWin.content.cbtOk.onRelease = Delegate.create(this, onCancelOK); } [/as][…]

Published on Fri, 26 May 2006 04:11

Inline Flash Font Text

http://www.mikeindustries.com/sifr/

I have got to try this on this blog…

Sweet design…http://www.shauninman.com/plete/

[…]

Published on Thu, 25 May 2006 00:39