Need to analyze the sqlite database. I am writing on c # in visual studio 2013 in Windows 7. I used a third-party library, but it weighs 3 MB, and size is very important to me. How can I read sqlite database without using third-party libraries? Maybe in visual studio there is a built-in class? I tried to use regular sql, but I did not succeed. I have a program at this moment:
SqlDataAdapter adapter = new SqlDataAdapter(sqlQuery, m_dbConn); adapter.Fill(dTable);
SqlDataAdapterdocumentation — it says right there that it is for SqlServer. So put the provider for sqlite and do not suffer from garbage. - Alexander Petrov