用于发送字符串值+ url的数据类型

时间:2014-01-20 06:14:43

标签: sql database sqldatatypes

在我的应用程序中,我必须在数据库上发布数据。我使用查询字符串发布我的数据。我也在数据库上使用String数据类型。 但我的数据是一些字符串值与url>>(例如Ho!下载kijiye Salman ki Aanewali Blockbuster Jai Ho Ki Superhit Caller Tunes。T& C apply.RCOM。点击

  
    

网址:http://bit.ly/19CtoVp&date=01/18/2014)。     现在我如何在数据库上发布我的数据。是否有其他数据类型可以在SQL中存储带有url的字符串值。请给我一个......

  

1 个答案:

答案 0 :(得分:1)

在这种情况下使用的最佳数据类型仍然是String,因为您处理的是随机字符,包括特殊字符,数字字符和非数字字符。请记住使用反SQL注入函数,尤其是当值包含引号时。

There are basically only 4 most commonly used datatypes in a database.
1) String - Stores any value found on the ASCII Table.
2) Float - Store numbers.
3) Date/Time - Stores date and time.
4) Binary - Stores anything in binary form such as pictures, videos, mp3, virtually anything in binary form.

当然每个数据类型都有变化,比如float和integer,差别就是它的分配字节。 Float可以存储更大的数字,因此您可以使用float来保证安全。