Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
qir
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julien Lopez
qir
Commits
c74b2aa5
Commit
c74b2aa5
authored
Aug 4, 2015
by
Julien Lopez
Browse files
Options
Downloads
Patches
Plain Diff
[MINOR] Add few comments
parent
e2874361
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
QIR/src/qir/driver/QIRDriver.java
+2
-2
2 additions, 2 deletions
QIR/src/qir/driver/QIRDriver.java
QIR/src/qir/factory/DBDriverFactory.java
+3
-0
3 additions, 0 deletions
QIR/src/qir/factory/DBDriverFactory.java
with
5 additions
and
2 deletions
QIR/src/qir/driver/QIRDriver.java
+
2
−
2
View file @
c74b2aa5
...
...
@@ -5,8 +5,8 @@ import qir.ast.data.*;
import
qir.util.*
;
/**
* TODO: Add interface to stream results; add interface to get database info
(table exists?, table
* schema, ...).
*
WORK IN PROGRESS:
TODO: Add interface to stream results; add interface to get database info
*
(table exists?, table
schema, ...).
*/
public
class
QIRDriver
{
private
final
DBDriver
defaultDriver
;
...
...
This diff is collapsed.
Click to expand it.
QIR/src/qir/factory/DBDriverFactory.java
+
3
−
0
View file @
c74b2aa5
...
...
@@ -5,6 +5,9 @@ import java.sql.*;
import
qir.driver.*
;
import
qir.driver.OracleDriver.ConnectionData
;
/**
* WORK IN PROGRESS
*/
public
class
DBDriverFactory
{
public
static
DBDriver
createDBDriver
(
String
dbName
,
String
sessionId
,
String
serverName
,
int
port
,
String
userName
,
String
passwd
)
{
if
(
dbName
.
equalsIgnoreCase
(
"Oracle"
))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment