Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

17 total results found

Content Management Systems

Applications/Software

Content Management Systems (CMS) are web programs that make it easier to add and update content on web sites. Instead of learning HTML, FTP and web server commands, once a CMS is set up and a template “look” is defined, others can usually add material very eas...

CMS
asp
MySQL
open source
PHP
Python
SQL
web development

MySQL Resources

Programming and Web Development SQL

MySQL is a free, open-source relational database that has been used in thousands of websites, large and small. This is a contributed collection of resource links on MySQL. Feel free to add your favorites. Mike Franks – SSC Collection of Mysql links and arti...

database
MySQL
programming

How can I make phpMyAdmin avoid sending MySQL passwords in the clear?

Programming and Web Development PHP

Although phpMyAdmin is an excellent tool for administering MySQL databases, you don’t want to expose your MySQL usernames and passwords to sniffing over the wire by sending them “in the clear.”The solution, if you are running https, is to simple edit the confi...

web
MySQL
security

Why doesn't mysqlshow work for databases or tables with underscores in their names?

Programming and Web Development SQL

mysqlshow has a tricky feature that interprets SQL wildcard characters (*,?,%,_) as wildcards if they appear in the last argument you give it. While the first 3 characters don’t get used much (if at all) in naming databases, the underscore is a common word sep...

MySQL
mysqlshow
underscore

What is mysqlshow good for?

Programming and Web Development SQL

mysqlshow is a command-line tool included with standard MySQL distributions, similar to mysqladmin or other tools. mysqlshow is used to show summary information about databases and tables.Here is its basic usage:mysqlshow [OPTIONS] [database [table [field]]]Th...

MySQL
mysqlshow

How can I search/replace strings in MySQL?

Programming and Web Development SQL

MySQL lets you replace all occurrences of a character or string of characters in a table with some other character or string.UPDATE table SET field1 = REPLACE(field1, 'replace_that', 'with_this'), field2 = REPLACE(field2, 'and_that', 'with_this')As an example,...

MySQL
SQL
search
replace
transpose

How to view DBDesigner4 documents in Mac OS X

MacOS, Windows, and Linux

Unfortunately, DBDesigner4 is written in Delphi, which is practically Windows-only, so there is not and probably will not be a Mac OS X version. Also, no other applications are able to show diagrams in this format.DBDesigner is replaced by MySQL workbench. It ...

DBDesigner
Mac OS X
MySQL

What are the differences between addslashes(), mysql_escape_string() and mysql_real_escape_string()

Programming and Web Development PHP

addslashes() escapes single quote (’), double quote ("), backslash (\) and NUL (\x00).mysql_escape_string() and mysql_real_escape_string() escapes the characters above plus: CR (\r), LF (\n) and EOF (\x1a). Apparently (according to the manual), MySQL wants the...

escape
MySQL
PHP

Configuring MediaWiki to Search for Three Letter Words

Programming and Web Development

By default MediaWiki uses MySQL and the default FULLTEXT indexing uses built-in stop words and a minimum word length of four. A list of the stop words is available but are the usual thing (the, and, one_, etc.). You can set your own stop words by setting the f...

search
configuration
MediaWiki
MySQL

Using LimeSurvey as a Survey Tool

Applications/Software

We were in search of a good survey tool, and after some research came upon LimeSurvey (www.limesurvey.org). We found it extremely easy to set up and use and allowed for professional surveys with features commonly found in commercial products.The following lis...

LimeSurvey
MySQL
PHP
survey

Free/open source information retrieval libraries

Programming and Web Development

What are they and why using oneInformation retrieval libraries are software libraries that provides functionality for searching within databases and documents within them. In particular, this often refers to searching text document for combinations of words an...

Lucene
Sphinx
information retrieval
MySQL

Microsoft Access, OpenOffice and MySQL

Programming and Web Development SQL

Using ODBC it is possible to connect Microsoft Access (or OpenOffice) to a MySQL database. Access or OpenOffice can even be used as “front end” to MySQL.The “MySQL Connector/OBDC” drivers are available at: <http://dev.mysql.com/doc/refman/5.0/en/connector-o...

Microsoft Access
MySQL
OpenOffice

Why NoSQL Matters

Programming and Web Development SQL

Useful survey of NoSQL (and SQL) technologies and a summary of the philosophy…http://blog.heroku.com/archives/2010/7/20/nosqlTaken from email by Jose Hales-Garcia to Campus Web Publishers List

database
MySQL
programming

SQL joins

Programming and Web Development SQL

Please add other helpful links:SQL joins: a visual explanationhttp://www.codinghorror.com/blog/2007/10/a-visual-explanation-of-sql-joins.html

cross join
database
inner join
join
left join
MySQL
outer join
SQL

Get rid of default annoyances in MySQL Workbench

Programming and Web Development SQL

By default, if you make any changes to table rows, there is an annoying 2-step confirmation dialog when you click Apply. It also prevents you from doing many mass UPDATEs and DELETEs (this is called ‘Safe Updates’).Safe Updates is a good idea in principle, sin...

MySQL

Mac OS X - Local Web Development Environment Setup

Programming and Web Development

My name is Alex Podobas and I’m a member of the UCLA IT Security Office. My IT security work at UCLA involves an ample amount of code review and writing web applications and I use OS X as my primary, day-to-day operating system. Recently, I wiped my computer a...

localhost
PHP
MySQL
Mac OS X

What's an easy way to set up a WAMP test environment?

Programming and Web Development

Many popular Content Management Systems (CMS) run in a php/mysql environment. Their dynamic nature makes traditional develop on workstation and upload less useful, and editing live on the server is not always desirable. Luckily there are straightforward ways...

WAMP
Windows
Apache
MySQL
test
dev
server