Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

error column data type blob

Status
Not open for further replies.

nicka2

Programmer
Nov 12, 2002
3
ES
create table pruebasBlOB(
indice serial,
fich blob
# ^
# 201: A syntax error has occurred.
#
)
 
Nick2a:

The syntax you're using to create a blob is not correct. Use either:

fich text

or

fich byte

Regards,

Ed
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top