Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
jdbc
- Page 1
jdbc
Programming
Software Development
11 Years Ago
by AbanJ
jdbc
cannot connect to my computer
Re: jdbc help?
Programming
Software Development
19 Years Ago
by ramamoorthy
….,)and back-end(database).
JDBC
will talk to you db. Choose appropriate
jdbc
drivers for Oracle9i. Ensure that
jdbc
drivers available in your… in Windows. The simple code fragments: Class.forName("sun.
jdbc
.odbc.JdbcOdbc"); Connection conn=DriverManager.getConnection(dsn,"username…
Re: JDBC
Programming
Software Development
14 Years Ago
by Stefano Mtangoo
… import java.sql.*; class DBClass { //private private String dbHost = "
jdbc
:mysql://localhost:3306/"; private String dbUser = "root"… dbPassword = "ilovejesus"; private String dbClass = "com.mysql.
jdbc
.Driver"; private String dbName = "sitedb"; public Connection…
Re: JDBC
Programming
Software Development
14 Years Ago
by Stefano Mtangoo
… import java.sql.*; class DBClass { //private private String dbHost = "
jdbc
:mysql://localhost:3306/"; private String dbUser = "root"… dbPassword = "ilovejesus"; private String dbClass = "com.mysql.
jdbc
.Driver"; private String dbName = "sitedb"; public Connection…
Re: JDBC
Programming
Software Development
14 Years Ago
by Stefano Mtangoo
… (Exception e) { e.printStackTrace(); } } //private private String dbHost = "
jdbc
:mysql://localhost:3306/"; private String dbUser = "root"… "ilovejesus"; private String dbClass = "com.mysql.
jdbc
.Driver"; private String dbName = "sitedb"; public …
Re: JDBC
Programming
Software Development
14 Years Ago
by Stefano Mtangoo
… (Exception e) { e.printStackTrace(); } } //private private String dbHost = "
jdbc
:mysql://localhost:3306/"; private String dbUser = "root"… "ilovejesus"; private String dbClass = "com.mysql.
jdbc
.Driver"; private String dbName = "sitedb"; public …
Re: JDBC
Programming
Software Development
14 Years Ago
by Stefano Mtangoo
…(ResultSetImpl.java:795) at com.mysql.
jdbc
.ResultSetImpl.checkRowPos(ResultSetImpl.java:839) at com.mysql.
jdbc
.ResultSetImpl.getStringInternal(ResultSetImpl.java:5657) at… com.mysql.
jdbc
.ResultSetImpl.getString(ResultSetImpl.java:5577) at…
Re: jdbc help?
Programming
Software Development
19 Years Ago
by fisheye
… brief introduction as to what exactly is
jdbc
and how do i install and use
jdbc
drivers with oracle 9i. and how… your Java code executes, it needs access to the Oracle
JDBC
class files. This means that the class files must reside….com/search?complete=1&hl=en&q=installing+
jdbc
+drivers&btnG=Google+Search]Google[/URL].
JDBC
Programming
Software Development
14 Years Ago
by Stefano Mtangoo
…conn = null; try { Class.forName("com.mysql.
jdbc
.Driver").newInstance(); conn = DriverManager.getConnection(this.host, ….close(); } return null; } //credentials private String host = "
jdbc
:mysql://localhost:3306/mysql"; private String userName = "root…
Re: JDBC
Programming
Software Development
14 Years Ago
by Stefano Mtangoo
…my test class MainApp.java [CODE=JAVA] package dbclass; /** *Testing
JDBC
*/ public class MainApp { public static void main(String[] args){ … = "ilovejesus"; private String dbClass = "com.mysql.
jdbc
.Driver"; public void getDbInfo(String sql) { try { Class.forName…
Re: JDBC
Programming
Software Development
14 Years Ago
by hansoctantan
….sql.*; public class DBClass { //private private String dbHost = "
jdbc
:mysql://localhost/phonebook"; private String dbUser = "root"… dbPassword = ""; private String dbClass = "com.mysql.
jdbc
.Driver"; public void getDbInfo(String sql) throws InstantiationException, IllegalAccessException…
Re: JDBC
Programming
Software Development
14 Years Ago
by nohup
… PC (localhost). The connection string for MySQL is: "
jdbc
:mysql://{host}:{port}/{dbname}. So, if you wanted to connect…[CODE]Class.forName("com.mysql.
jdbc
.Driver"); Connection conn = DriverManager.getConnection("
jdbc
:mysql://localhost:3306/mydb","…already have access to the class "com.mysql.
jdbc
.Driver".
jdbc help?
Programming
Software Development
19 Years Ago
by indianscorpion2
hi everyone, i am looking for a brief introduction as to what exactly is
jdbc
and how do i install and use
jdbc
drivers with oracle 9i. and how shoud i write a code to execute queries on the tables in my oracle 9i database.
Re: JDBC
Programming
Software Development
14 Years Ago
by ~s.o.s~
[quote]And then called it in finally[/quote] Did you read the links I posted in my previous post? Don't use `finalize` for cleaning up connections/resultsets etc. Get in the habit of reading source code of libraries. Reading the source code of DBUtils would give you a fair idea as to how resource cleanup needs to be done when dealing with
JDBC
.
Re: JDBC
Programming
Software Development
14 Years Ago
by Stefano Mtangoo
[QUOTE=kawazaki123;1267894]I just set up a project containing all the scripts
JDBC
Swing + such that: [Insert - Update - Delete - Create - Query] With PostgresSQL and you can download at : Scripts : <snipped url/>[/QUOTE] Thanks kawazaki. I will check
Re: JDBC
Programming
Software Development
14 Years Ago
by Ezzaral
…: [URL="http://download.oracle.com/javase/tutorial/
jdbc
/basics/index.html"]
JDBC
Basics[/URL] Don't use the JdbcOdbc driver… when a pure
JDBC
driver is available. Here are some examples specifically for MySQL…
JDBC Help
Programming
Web Development
13 Years Ago
by newcoder310
…="system"; String pwd="*****"; String url = "
jdbc
:oracle:thin:@localhost:1521:XE"; Connection con = null; Statement…(url, uname, pwd); stmt=con.createStatement(); Class.forName("sun.
jdbc
.odbc.JdbcOdbcDriver"); } catch(Exception e){ System.out.println(e…
JDBC
Programming
Software Development
11 Years Ago
by NajwaMY
…()); try{ Class.forName("com.mysql.
jdbc
.Driver"); Connection con=DriverManager.getConnection("
jdbc
:mysql://localhost/projectmarking","root"…
Re: JDBC
Programming
Software Development
14 Years Ago
by neo_31591
… the database...i have created the whole layout.... problem is
jdbc
..i have no idea how to make it work.... I… how to connect the database to any java proggrame using
jdbc
.odbc.JdbcOdbc driver.... (i wanna figure out the database connection…
JDBC
Programming
Databases
14 Years Ago
by itit
…+cardNo4; } else cardNo = "NIL"; con = DriverManager.getConnection("
jdbc
:odbc:project"); statement = con.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_UPDATABLE…
JDBC
Programming
Software Development
14 Years Ago
by neo_31591
… the database should work out..no idea whatsoever..... am using
jdbc
,prpeared statements etc etc.... please a little help with the…
Re: JDBC
Programming
Software Development
14 Years Ago
by neo_31591
well the main problem is that i have WAMPSERVER installed,,,,,i created a database....but i just dont get
jdbc
....i dont know how to link the database with my proggrame.....where is the database stored....no idea.... :(:(
jdbc on window
Programming
Software Development
13 Years Ago
by rushikesh jadha
…Connection con = (Connection) DriverManager.getConnection("
jdbc
:mysql://loca lhost/bank","root"…Connection con = (Connection) DriverManager.getConnection("
jdbc
:mysql://loca lhost/bank","root"…Connection con = (Connection) DriverManager.getConnection("
jdbc
:mysql://loca lhost/bank","root"…
Re: jdbc on window
Programming
Software Development
13 Years Ago
by DavidKroukamp
… Connection con = (Connection) DriverManager.getConnection("
jdbc
:mysql://loca lhost/bank","root"…Connection con = (Connection) DriverManager.getConnection("
jdbc
:mysql://loca lhost/bank","root"…Connection con = (Connection) DriverManager.getConnection("
jdbc
:mysql://loca lhost/bank","root"…
JDBC Connection Pooling : Network Adapter could not establish the connection
Programming
Software Development
17 Years Ago
by smzuber
….getPhysicalConnection(OracleConnectionPoolDataSource.java:149) at oracle.
jdbc
.pool.OracleConnectionPoolDataSource.getPooledConnection(OracleConnectionPoolDataSource.java:95) at oracle.
jdbc
.pool.OracleConnectionPoolDataSource.getPooledConnection(OracleConnectionPoolDataSource.java:63…
Re: jdbc on window
Programming
Software Development
13 Years Ago
by rushikesh jadha
…args[]){ String dbtime; String dbUrl = "
jdbc
:mysql://localhost/bank"; String dbClass = "com.…mysql.
jdbc
.Driver"; String query = "desc customer&…quot;; try { Class.forName("com.mysql.
jdbc
.Driver"); Connection con = DriverManager.getConnection(dbUrl,"…
JDBC connection error: Communications link failure
Programming
Web Development
8 Years Ago
by newbee_jv
…lt;bean id="dataSource" class="org.springframework.
jdbc
.datasource.DriverManagerDataSource"> <property name="driverClassName&….WsFilter.doFilter(WsFilter.java:52) root cause com.mysql.
jdbc
.exceptions.jdbc4.CommunicationsException: Communications link failure apache.tomcat.websocket.…
Re: JDBC connection error: Communications link failure
Programming
Web Development
8 Years Ago
by Taywin
…://stackoverflow.com/questions/6865538/solving-a-communications-link-failure-with-
jdbc
-and-mysql)
Re: JDBC connection error: Communications link failure
Programming
Web Development
8 Years Ago
by Taywin
I don't have time to take a look at your question right now. Please take a look at how JdbcTemplate.query() works [here](http://docs.spring.io/autorepo/docs/spring/1.2.x/api/org/springframework/
jdbc
/core/JdbcTemplate.html).
JDBC MS Access Exception
Programming
Software Development
16 Years Ago
by rlaknar
…(JdbcOdbc.java:7115) at sun.
jdbc
.odbc.JdbcOdbc.SQLExecDirect(JdbcOdbc.java:3111) at sun.
jdbc
.odbc.JdbcOdbcStatement.execute(JdbcOdbcStatement.java:338…) at sun.
jdbc
.odbc.JdbcOdbcStatement.executeQuery(JdbcOdbcStatement.java:2…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC