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 :
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
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]
Then as explained use the DataSet to store and access the information stored.
Regards,
Linvi