Archives
-
A better MySQL module for newLISP
The Mysql module has been written from scratch utilizing some of the more recent features of newLisp, such as FOOP and reference returns. One of its major design goals was to simplify use as well as broaden the features of the standard MySQL module, while at the same time allowing the creation of new, anonymous [...]
Jan 22nd, 2009 | Filed under Programming, Software -
Full-text searching with MySQL
MySQL’s full-text search functions provide a simple framework for an easily implemented, approximate site search. Many sites, written in an interpreted language and powered by MySQL, can use MySQL’s full-text search to avoid third party dependencies. Submit article
Oct 8th, 2008 | Filed under Programming -
Making 64-bit MySQL work with newLISP
For the past few days have been spent trying to get the newLISP MySQL module to work with the 64-bit version of the libmysqlclient library. Here is what I did to get things working properly. Submit article
Jul 24th, 2008 | Filed under Programming -
SQL library for newLISP
The newLISP SQL library is a set of classes and functions to ease generation of SQL code in newLISP. The module is not yet feature-complete but is in a usable state. Submit article
Jul 14th, 2008 | Filed under Programming -
Create/update function for CLSQL
Django has a very handy model method in its database library called get_or_create, which either creates a new record using the keyword arguments passed as field values or gets a record using the arguments passed. Submit article
May 9th, 2008 | Filed under Programming