I am having a problem reading the data from my database after I upload my project to my webhost.
I have tested the project connecting to my local database and to my database on my webhost using the
following connections.
To read the data from the Localhost SQL Server I have used the connection:
SQL1.Initialize("net.sourceforge.jtds.jdbc.Driver","jdbc:jtds:sqlserver://localhost:1433")
I compile the project.
I then open a browser and enter: localhost:51042 and the program opens and reads and updates the database on my local sql server. Everything words perfect.
To read the date from the database located on my Remote SQL Server GoDaddy account I used the connection:
SQL1.Initialize2("net.sourceforge.jtds.jdbc.Driver","jdbc:jtds:sqlserver://184.168.194.78","databasename","password")
I compile the project.
I then open a browser and enter: localhost:51042 and the program opens and reads and updates the database on my Godaddy sql server database. Everything works perfect.
Now, when I upload all of the files generated by B4j to my webhost and then open the index.html the page opens but no data is displayed. I know I am missing something but I have no clue what it is.
Any help would be greatly appreciated.
Thank you,
Robert