hyperlink in sql 2005

  • Thread starter Thread starter alecarnero
  • Start date Start date
A

alecarnero

What tipe of data i must use for store a hyperlink in sql 2005 ?
Is possible use a format type of access??

I have installed access 2003 and sql server 2005 , access can not modify the
structure of the tables , why this?? is a problem version???

Thanks by any Information


Alejandro carnero
 
Access2003 cannot be used to design database in SQL Server 2005. YOu need to
use Access2007. Or use SQL Server Management Studio/Express.

You cannot store hyperlink into SQL Server database table. You store the
link's URL as text, and to present it as hyperlink at presentation level,
which is an application's user interface (SQL Server database is data
storage without user interface).
 
Back
Top