Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SQL (Android-SQLite, JDBC) support #32

Closed
5 tasks done
Miha-x64 opened this issue Jun 9, 2018 · 2 comments
Closed
5 tasks done

SQL (Android-SQLite, JDBC) support #32

Miha-x64 opened this issue Jun 9, 2018 · 2 comments

Comments

@Miha-x64
Copy link
Owner

Miha-x64 commented Jun 9, 2018

  • Prototype, SQLite, observability
  • SQL templates
  • Create trigger-based observability which will work for external INSERT/UPDATE/DELETE statements and for multi-node applications with a shared database
  • Support mutating SQL templates
  • deprecate DAOs and Records
@Miha-x64 Miha-x64 changed the title Android SQLite support SQL (especially SQLite, Android and JDBC) support Jul 26, 2018
@Badya
Copy link

Badya commented Jul 26, 2018

While working with locks, especially combining with JDBC, you should always be aware of SQLException or other Throwable, so best-practice is:

try {
  lockObj.lock()
  // do smth what may cause Throwable
} catch(t: Throwable) {
  // optional catch, log, rollback, recover etc.
} finally {
  lockObj.unlock()
}

@Miha-x64
Copy link
Owner Author

Thanks.
Isn't this enough? 6025583#diff-573dde46d39b9c33095dc3e66c14a5f9R16

Miha-x64 added a commit that referenced this issue Jul 28, 2018
Miha-x64 added a commit that referenced this issue Jul 28, 2018
Miha-x64 added a commit that referenced this issue Jul 29, 2018
Miha-x64 added a commit that referenced this issue Jul 29, 2018
Miha-x64 added a commit that referenced this issue Jul 29, 2018
Miha-x64 added a commit that referenced this issue Aug 4, 2018
Miha-x64 added a commit that referenced this issue Aug 4, 2018
Miha-x64 added a commit that referenced this issue Aug 4, 2018
Miha-x64 added a commit that referenced this issue Aug 5, 2018
Miha-x64 added a commit that referenced this issue Aug 5, 2018
Miha-x64 added a commit that referenced this issue Mar 12, 2020
Miha-x64 added a commit that referenced this issue Mar 13, 2020
…t, moved `cellByteStream` to `Blocking`
Miha-x64 added a commit that referenced this issue Mar 13, 2020
Miha-x64 added a commit that referenced this issue Mar 14, 2020
Miha-x64 added a commit that referenced this issue Mar 14, 2020
Miha-x64 added a commit that referenced this issue May 13, 2020
Miha-x64 added a commit that referenced this issue May 13, 2020
Miha-x64 added a commit that referenced this issue May 24, 2020
added Ilk as a supertype of all DataTypes,
added DataType.NotNull as a supertype for Simple, Collect, and Partial
Miha-x64 added a commit that referenced this issue May 24, 2020
added Ilk as a supertype of all DataTypes,
added DataType.NotNull as a supertype for Simple, Collect, and Partial
Miha-x64 added a commit that referenced this issue May 24, 2020
added Ilk as a supertype of all DataTypes,
added DataType.NotNull as a supertype for Simple, Collect, and Partial
@Miha-x64 Miha-x64 changed the title SQL (especially SQLite, Android and JDBC) support SQL (Android-SQLite, JDBC) support Jun 21, 2020
@Miha-x64 Miha-x64 mentioned this issue Aug 1, 2020
Miha-x64 added a commit that referenced this issue Sep 3, 2020
Miha-x64 added a commit that referenced this issue Sep 3, 2020
Miha-x64 added a commit that referenced this issue Sep 3, 2020
Miha-x64 added a commit that referenced this issue Sep 3, 2020
Miha-x64 added a commit that referenced this issue Sep 3, 2020
Miha-x64 added a commit that referenced this issue Sep 3, 2020
@Miha-x64 Miha-x64 closed this as completed Sep 3, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants