-2

Normally whats the reason to get java.lang.ClassCastException ..? I get the following error in my application java.lang.classCastException:org.sqlite.prepstmt cannot be cast to prepared statment

Boris the Spider
  • 59,842
  • 6
  • 106
  • 166

1 Answers1

1

you are casting one type of prepared statement to other. maybe you are using sqlite and casting to prepared statement of mysql? or from another library? take a look at your imports

Dima
  • 8,586
  • 4
  • 28
  • 57