Yahoo Clever wird am 4. Mai 2021 (Eastern Time, Zeitzone US-Ostküste) eingestellt. Ab dem 20. April 2021 (Eastern Time) ist die Website von Yahoo Clever nur noch im reinen Lesemodus verfügbar. Andere Yahoo Produkte oder Dienste oder Ihr Yahoo Account sind von diesen Änderungen nicht betroffen. Auf dieser Hilfeseite finden Sie weitere Informationen zur Einstellung von Yahoo Clever und dazu, wie Sie Ihre Daten herunterladen.

Lv 2423 points

Thoại

Favorisierte Antworten44%
Antworten32
  • Connect to MS SQL Server MDF database file in Java by using ODBC?

    Hi, everyone, first look at my code:

    public static void ApplyQueryDT(String str) {

    try {

    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");

    Connection conn = DriverManager.getConnection("jdbc:odbc:Driver={SQL Server};Server=ASUS-U50V;Database=GameDB;UserName=;Password=;");

    Statement stmt = conn.createStatement();

    stmt.executeQuery(str);

    JOptionPane.showMessageDialog(null, "ok", "Ok", JOptionPane.INFORMATION_MESSAGE);

    }

    catch(Exception e) {

    JOptionPane.showMessageDialog(null, e, "Error", JOptionPane.ERROR_MESSAGE);

    }

    }

    So, It connect to my MS SQL server database, but the thing I want is how to connect it to MDF File by rewrite this:

    "jdbc:odbc:Driver={SQL Server};Server=ASUS-U50V;Database=GameDB;UserName=;Password=;"

    thank

    2 AntwortenProgramming & Designvor 9 Jahren
  • How to programming an anti-plagiarism application?

    I'm not please with all free anti-plagiarism. So i decide to write my own an anti-plagiarism application. I need to know how it work and where to get the source code if it available.

    P/S: I'm already known C#, VB, Java so on and i was advanced computer user.

    3 AntwortenProgramming & Designvor 1 Jahrzehnt