Does mSQL support BLOBs?
BLOBs are Binary Large OBjects. Typical examples would be large blocks of text, graphics or audio data. The current release of mSQL has NO direct support for BLOBs. However, you can always store the path name of a file that points to the BLOB in one of the fields of your table. Then your application can deal with the file name appropriately. If you’re dealing with large blocks of text, you may also wish to consider this approach from Pascal Forget