Jump to content

Connecting to database issue


Zunarb

Recommended Posts

Ive been following the instructions here but been facing issues.

When i make the bat file as instructed like this

"C:\Program Files\Java\jre1.8.0_172\bin\java.exe" -cp "lib/*" org.osbot.Boot -debug

i get an error "Could not find or load main class org.osbot.Boot"

I can get the client open the usual way i do with adding ....bin \javaw.exe" -jar "OSbot 2.5.8.jar"  but idk if the problem is this or what ?

When i have the client open and logged in i run the script i copied and only  changed the db/locations i had to for getting into correct path in the sql. After running the script nothing happens and the client just kind of freezes. Anyone kind enough to help me out? Ive been struggling with this database setup shit for days now 😕

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.*;

import org.osbot.rs07.script.Script;
import org.osbot.rs07.script.ScriptManifest;

@ScriptManifest(author = "", info = "", logo = "", name = "SQL Test", version = 0)
public class Sqltest extends Script {

    @Override
    public void onStart() throws InterruptedException {
        
        try {
            
            String host = "localhost:3306";
            String db   = "mule";
            String user = "root";
            String pass = "";
            
            String connStr = String.format("jdbc:mysql://%s/%s?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC", host, db);
            
            Connection conn = DriverManager.getConnection(connStr, user, pass);
            
            ResultSet results = conn.createStatement().executeQuery("SELECT `name` FROM `mule`;");

            while (results.next()) {
                
                logger.debug(results.getString("name"));
            }
            
        } catch (SQLException e) {
            logger.error(e);
        }
        
    }

    @Override
    public int onLoop() throws InterruptedException {
        return 50;
    }
}

 

Link to comment
Share on other sites

I get this error in the debug mode when i run the sql test script. Can anyone tell me whats causing the issue ?

sqltest.PNG

50 minutes ago, Protoprize said:

why don't you just launch osbot with 


java -jar osbot.jar

 

I managed to launch the bat file now but posted the error photo here after launching the script so now have to figure that out 😅😅

Link to comment
Share on other sites

8 minutes ago, Zunarb said:

I get this error in the debug mode when i run the sql test script. Can anyone tell me whats causing the issue ?

sqltest.PNG

I managed to launch the bat file now but posted the error photo here after launching the script so now have to figure that out 😅😅

You put the main code into a package but didn't declare the package I think. Try moving the file to the src folder of your project

Link to comment
Share on other sites

21 minutes ago, Protoprize said:

You put the main code into a package but didn't declare the package I think. Try moving the file to the src folder of your project

oh shit yeah i had accidentally deleted it without notice! Thank you :) Now just one more problem i gotta solve. When i play the script now i get the error:

 java.sql.SQLException: No suitable driver found for jdbc:mysql://localhost:3306/mule?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC

Appearently it is cause its not accessing the mysql-connector-java-8.0.20 but how do i change that ? I have it in the same folder with the bat file and osbot.jar also i have it in the reference library of the sqltest.jar but seems like its still not accessing any of them?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...