is there anybody with working Crystal Report and SQLite? any info would be great. SQLite is one of the fastest database in world but somehow there is no examples how to connect those two.
I don't need any rhetorical answers..i need real code..to get started with.
Or maybe you can tell me other solutions to replace CR with.
EDIT: For those who new to this like i'm. All you need to do is Add new dataset as in screenshot, create table with the same name that will be used in this report, add the same fields as will be used in report. Then with Database Expert add this dataset, add fields to report and they will appear :)
here is how i run in C# netikslumai1 is CrystalReportDocument, darbineLenta is my string variable with database name. DataSet1 is COMPONENT not that dataset we added like in screenshot.
netikslumai1.Load(Application.StartupPath + "\\netikslumai.rpt");
netikslumai1.SetDataSource(dataSet1.Tables[darbineLenta]);
crystalReportViewer1.ReportSource = netikslumai1;
crystalReportViewer1.Refresh();
