jdbcsql

  1. SJQ

    Android Question Android 14 no longer supports SSLv3 with jdbcSQL and MySQL Connector

    So, with the discovery that Android 14 no longer supports SSLv3 how are we supposed to use libraries like jdbcSQL and the MySQl jdbc driver on newer devices? The Microsoft Azure, MySQL Database server the company uses supports TLSv1.0, TLSv1.1, TLSv1.2 how do we configure the jdbc connection to...
  2. mik21

    Android Question Using JdbcSQL to connect to MSSQL

    I am using jdbcSQL to connect MSSQL. There is problem in release mode with error NetworkOnMainThread. The solution is to use async methods (InitializeAsync, ExecQueryAsync). I made a small test and have the same problem. Exactly it depends from number of returned rows. If result is 10 rows it...
  3. R

    Android Question B4A - Direct connection with JdbcSQL to MSSQL with istance

    Hello everyone, i tried successfully to connect my app an MSSQL Server without istance, but when i try to connect with another MSSQL that has an istance the connection doesn't work. I specify the istance in the jdbcUrl after the IPServer; is it right? Public MsSql As JdbcSQL Private...
  4. G

    Android Question Working with BLOBs and images

    Could someone please point me in the direction of examples for the following scenario. I need to take pictures with the android camera (using cameraex class I need to save these in a local SQLLIte db in a BLOB field I then need to send these records to a remote MYSQL database using JdbSQL I...
  5. F

    Android Question Passing parameters to ExecQueryAsync

    Hi, I am trying to execute a statement against MS SQL server. The statement is Dim sf As Object = RemoteSQL.ExecQueryAsync("RemoteSQL", "SELECT * from package where package_id=?", Array As Int (147)) But it does not return any rows (Crsr has no rows). If I use select * from package without...
  6. makis_best

    Android Question [Solved] JdbcSQL and SQL Server

    Hi I read allot inside the forum about how to connect jdbcSQL with Sql server but I can't understand it. All info are split in several post confusing very much specially newbies like me. There are no complete tutorial - example saying from start to end how to do it? Thank you.
Top