Share My Creation [B4J] [MySQL] [API] Server (Key + Token) and [B4X] User Login Apps - aeric    Aug 16, 2024   (39 reactions) database and tables in MySQL server.
jAPI.zip - Source code for server app (B4J).
B4A.zip - Source code...
Updates:
Latest B4XPages user login client apps (using B4J server):
https://www.b4x.com/android... B4A Tutorial Connect Android to MS SQL Server Tutorial - Erel    Jun 27, 2016   (8 reactions) is a follow up to the previous tutorial that explained how to connect to a MySQL database using a PHP web service. This time we will use an ASP.NET web service to connect to a Microsoft SQL Server. Android cannot directly connect to the database server. Instead we will use HttpUtils to connect to a simple... that handles any query and passes it directly to the server. You can of course modify it and make... %> <%@ Import Namespace="System.Data.SqlClient" %> <%@ Import Namespace... B4A Tutorial Complete tutorial: B4A & Your own (local) php & MySql Server (Xampp) with b4a - KMatle    Feb 28, 2016   (30 reactions)   tags: Remote Database, B4A B4J at "Apache" and MySql. Both servers should start now without any problems. Take care that both can communicate via your firwall. Congrats. Now you have a working Web- and MySql Server. Next step is to...Update: Newer releases of XAMPP come with MariaDB except of MySQL. Basically the same but the php... that holds the connection) has to be added to every sql statement "mysqli_query($con..." installation package to have an own webserver including php and MySql 2. create a database and... B4A Tutorial Tutorial of connecting Android to MS SQL Server using jRDC2 - Bladimir Silva Toro    Mar 11, 2020   (33 reactions) Hi
Here is a tutorial that shows the steps of how to make an Android connection to MS SQL Server using jRDC2.
Download tutorial here: 1UEVTNelsTChMe1diehmOyHghHTi-qr_L
Attached the Mobile Project... B4J Code Snippet [Project Template] jRDC2 Server (SQLite, MySQL, MS SQL, Firebird, Postgresql, DBF) - aeric    Feb 20, 2025   (16 reactions) Updates jRDC2 Server v2 is available jRDC2 Server Template Version: 1.12 (based on jRDC2 version 2.23) Create a new project and run it! To be accompanied with jRDC2 Client Template Introduction: To be edited 147014 Version 1.00 : 9KB Version 1.11 : 127KB Version 1.12 : 127KB Version 2.00 (beta) : 127KB Note: If you think the latest version is big, you can use version 1.00 otherwise you can remove the images inside www/img or use smaller size images.... B4J Code Snippet SQL Server - Convert SQL Server Datetime Value to Unix Datetime and vice versa - hatzisn    Nov 4, 2022   (2 reactions) It requires jDateUtils library Sub GetDatetimeValueSqlServerFromUnixDatetime(dt As Long) As Double Dim p As Period = DateUtils.PeriodBetweenInDays(DateTime.DateTimeParse("1/1/1900", "0:0:0"), dt) Return p.Days + ((p.Hours * 3600 + p.Minutes * 60 + p.Seconds)/(3600*24)) End Sub Sub GetDatetimeValueUnixFromSqlServerDatetime(days As Double) As Long Dim p As Period p.Initialize p.Days = Floor(days) p.Seconds = Floor((days - p.Days) * (3600*24... B4A Code Snippet [B4X] Server picture File to B4XImageView VIA SQL Server - MrKim    Aug 15, 2023   (3 reactions) Thought I would share this. Sometimes it is just easier to go SQL direct rather than a jrdc server... LOCAL networks and works both wired and wireless.
Below is an SQL Server Function that will return... B4A Tutorial How to connect to SQL Server using jtds-1.3.1.jar - MrKim    Nov 17, 2019   (10 reactions) the PORT I am using through the firewall. I AM ABLE TO SUCCESSFULLY CONNECT TO AN SQL SERVER... ON THE SUBJECT. IF YOU CANNOT GET IT TO WORK THEN MORE THAN LIKELY YOUR ISSUE IS FIREWALL/DOMAIN/SQL SERVER.... I have connected to SQL server versions 2008 - 2014 successfully. IF you want to connect to any other DB other than MS SQL Server then I cannot help you. If your SQL Server is on anything other than... SELECT 'SQL Server and Windows Authentication Mode'. I HAVE NEVER TRIED WINDOWS AUTHENTICATION!... B4J Question Microsoft JDBC Driver - Problem connecting to SQL Server 2022 - Not Suitable driver - hatzisn    Nov 28, 2024 it is supported:
https://learn.microsoft.com/en-us/sql/connect/jdbc/microsoft-jdbc-driver-for-sql-server-support-matrix?view=sql-server-ver16
I have Microsoft JDBC driver 12.2.0 and also the latest 12.8... B4J Tutorial [Web] Trying Microsoft Azure MySQL Flexible Server - Mashiane    Jul 23, 2023 an instance of the MySQL Flex Server. This is used for secure connections and can be used for your...Ola Curious, so Im testing if I can deploy an app that will use Microsoft Azure MySQL. Things to... (mysqli_connect_errno()) { die('Failed to connect to MySQL: '.mysqli_connect_error()); } or...}"); If you happen to have an idea of how we can connect via b4j using the jSQL library, please impress us. ;) So far MySQL wokbench has been able to access this back-end. Will continue testing... Page: 1   2   3   4   5   6   |