Need example how to create new local database and a connection string, if possible with a using statement.
There should be 1 table and the data that I want to put in there are unique words length 2-50 lowercase characters, and thy can contain "a-zõäöüšž", ordered by ascending.
There are 2 actions I want to do with that:
- Put HashSet of string called words in
- Get HashSet of string called words that are specific length
Optionally, I could use an example how to reduce amount of answers given by Get, by telling what letter x must be or what it can not be in a specific location within length of word.
Edit Found my answer by Google.