MK14
3 questions
1
votes
0
answer
48
views
Android app doesn't login by error: org/postgresql/jdbc/TimestampUtils
when I try to do login in my android app occurs the following error:
java.lang.VerifyError: org/postgresql/jdbc/TimestampUtils
at org.postgresql.jdbc.PgConnection.(PgConnection.java:279)
at org.postgresql.Driver.makeConnection(Driver.java:450)
at org.postgresql.Driver.connect(Driver.java:252)
at jav...
1
votes
3
answer
1k
views
SQLite in an Universal App
I am developing an Universal App which should use SQLite.
Additionally I want to store data into the database from a background task (Windows Runtime Component).
Therefore I need to do my hole SQLite stuff in a ClassLibrary because of this thread.
I also use sqlite-net.
Now I discovered that i need...
2
votes
1
answer
4.4k
views
Launch.json in Visual Studio Code
To start debugging in Visual Studio Code I have to generate a Launch.json file.
After the file has been auto-generated by Visual Studio Code I've got something like this:
{
'version': '0.2.0',
'configurations': [
{
'name': 'Launch',
'type': 'node',
'request': 'launch',
'program': './bin/www',
'stopO...