Quantcast
Channel: Tweetinvi a friendly Twitter C# library
Viewing all articles
Browse latest Browse all 4126

New Post: Web application help

$
0
0
Hi,

Yes, this is very easy. As I said you can either use a File as a CSV or a database. This link describes how to use the database easily with Visual Studio 2012.

To create the table :
CREATETABLE [dbo].[NumberOfKeywords](
    [Id] [int] NOTNULL,
    [Keyword] [nvarchar](MAX) NOTNULL,
    [NumberOfKeywords] [int] NOTNULL,
 CONSTRAINT [PK_NumberOfKeywords] PRIMARYKEYCLUSTERED 
(
    [Id] ASC
)
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
This will allow you to link keywords to a number of time they have been found.
Then as explained use the DataSet to store and access the information stored.

Regards,
Linvi

Viewing all articles
Browse latest Browse all 4126

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>