
April 29th, 2000, 12:28 AM
|
 |
.Net Developer
|
|
Join Date: Feb 2000
Location: London
Posts: 987
Time spent in forums: 3 h 26 m 22 sec
Reputation Power: 14
|
|
vroques,
<<< Text column type will work in mysql.>>>>
As per your storage requirment you can select your columntype.
if you want to store string(characters)in a column(with 1-255 characters).
You can use eigther char or varchar type.
eg;
CREATE TABLE test (
montest varchar(30));
if you are using BLOB ,then you can use the column with a maximum length of 65535 (2^16 - 1) characters.
See Mysql manual for getting details about column types.
------------------
SR -
shiju.dreamcenter.net
[This message has been edited by Shiju Rajan (edited May 01, 2000).]
|