Skip to content
This repository was archived by the owner on Jan 18, 2024. It is now read-only.

Commit 70b9c9f

Browse files
Updated license doc
1 parent 809524e commit 70b9c9f

12 files changed

+157
-229
lines changed

src/main/java/xdev/db/oracle12c/jdbc/Oracle12cConnectionInformation.java

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,21 @@
1-
package xdev.db.oracle12c.jdbc;
2-
3-
/*-
4-
* #%L
5-
* SqlEngine Database Adapter Oracle 12c
6-
* %%
7-
* Copyright (C) 2003 - 2021 XDEV Software
8-
* %%
1+
/*
2+
* SqlEngine Database Adapter Oracle 12c - XAPI SqlEngine Database Adapter for Oracle 12c
3+
* Copyright © 2003 XDEV Software (https://xdev.software)
4+
*
95
* This program is free software: you can redistribute it and/or modify
10-
* it under the terms of the GNU Lesser General Public License as
11-
* published by the Free Software Foundation, either version 3 of the
12-
* License, or (at your option) any later version.
13-
*
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
1410
* This program is distributed in the hope that it will be useful,
1511
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1612
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17-
* GNU General Lesser Public License for more details.
18-
*
19-
* You should have received a copy of the GNU General Lesser Public
20-
* License along with this program. If not, see
21-
* <http://www.gnu.org/licenses/lgpl-3.0.html>.
22-
* #L%
13+
* GNU Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2317
*/
24-
18+
package xdev.db.oracle12c.jdbc;
2519

2620
import xdev.db.ConnectionInformation;
2721

src/main/java/xdev/db/oracle12c/jdbc/Oracle12cDDLMapper.java

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,21 @@
1-
package xdev.db.oracle12c.jdbc;
2-
3-
/*-
4-
* #%L
5-
* SqlEngine Database Adapter Oracle 12c
6-
* %%
7-
* Copyright (C) 2003 - 2021 XDEV Software
8-
* %%
1+
/*
2+
* SqlEngine Database Adapter Oracle 12c - XAPI SqlEngine Database Adapter for Oracle 12c
3+
* Copyright © 2003 XDEV Software (https://xdev.software)
4+
*
95
* This program is free software: you can redistribute it and/or modify
10-
* it under the terms of the GNU Lesser General Public License as
11-
* published by the Free Software Foundation, either version 3 of the
12-
* License, or (at your option) any later version.
13-
*
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
1410
* This program is distributed in the hope that it will be useful,
1511
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1612
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17-
* GNU General Lesser Public License for more details.
18-
*
19-
* You should have received a copy of the GNU General Lesser Public
20-
* License along with this program. If not, see
21-
* <http://www.gnu.org/licenses/lgpl-3.0.html>.
22-
* #L%
13+
* GNU Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2317
*/
24-
18+
package xdev.db.oracle12c.jdbc;
2519

2620
import static com.xdev.jadoth.sqlengine.SQL.Punctuation.par;
2721

src/main/java/xdev/db/oracle12c/jdbc/Oracle12cDMLAssembler.java

Lines changed: 14 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,21 @@
1-
package xdev.db.oracle12c.jdbc;
2-
3-
/*-
4-
* #%L
5-
* SqlEngine Database Adapter Oracle 12c
6-
* %%
7-
* Copyright (C) 2003 - 2021 XDEV Software
8-
* %%
1+
/*
2+
* SqlEngine Database Adapter Oracle 12c - XAPI SqlEngine Database Adapter for Oracle 12c
3+
* Copyright © 2003 XDEV Software (https://xdev.software)
4+
*
95
* This program is free software: you can redistribute it and/or modify
10-
* it under the terms of the GNU Lesser General Public License as
11-
* published by the Free Software Foundation, either version 3 of the
12-
* License, or (at your option) any later version.
13-
*
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
1410
* This program is distributed in the hope that it will be useful,
1511
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1612
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17-
* GNU General Lesser Public License for more details.
18-
*
19-
* You should have received a copy of the GNU General Lesser Public
20-
* License along with this program. If not, see
21-
* <http://www.gnu.org/licenses/lgpl-3.0.html>.
22-
* #L%
13+
* GNU Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2317
*/
24-
18+
package xdev.db.oracle12c.jdbc;
2519

2620
import static com.xdev.jadoth.sqlengine.SQL.LANG.FROM;
2721
import static com.xdev.jadoth.sqlengine.SQL.LANG.SELECT;
@@ -57,7 +51,7 @@
5751

5852

5953
/**
60-
* The Class Oracle11gDMLAssembler.
54+
* The Class Oracle12gDMLAssembler.
6155
*/
6256
public class Oracle12cDMLAssembler extends StandardDMLAssembler<Oracle12cDbms>
6357
{

src/main/java/xdev/db/oracle12c/jdbc/Oracle12cDbms.java

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,21 @@
1-
package xdev.db.oracle12c.jdbc;
2-
3-
/*-
4-
* #%L
5-
* SqlEngine Database Adapter Oracle 12c
6-
* %%
7-
* Copyright (C) 2003 - 2021 XDEV Software
8-
* %%
1+
/*
2+
* SqlEngine Database Adapter Oracle 12c - XAPI SqlEngine Database Adapter for Oracle 12c
3+
* Copyright © 2003 XDEV Software (https://xdev.software)
4+
*
95
* This program is free software: you can redistribute it and/or modify
10-
* it under the terms of the GNU Lesser General Public License as
11-
* published by the Free Software Foundation, either version 3 of the
12-
* License, or (at your option) any later version.
13-
*
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
1410
* This program is distributed in the hope that it will be useful,
1511
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1612
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17-
* GNU General Lesser Public License for more details.
18-
*
19-
* You should have received a copy of the GNU General Lesser Public
20-
* License along with this program. If not, see
21-
* <http://www.gnu.org/licenses/lgpl-3.0.html>.
22-
* #L%
13+
* GNU Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2317
*/
24-
18+
package xdev.db.oracle12c.jdbc;
2519
import com.xdev.jadoth.sqlengine.dbms.DbmsAdaptor;
2620
import com.xdev.jadoth.sqlengine.dbms.SQLExceptionParser;
2721
import com.xdev.jadoth.sqlengine.interfaces.ConnectionProvider;

src/main/java/xdev/db/oracle12c/jdbc/Oracle12cExceptionParser.java

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,21 @@
1-
package xdev.db.oracle12c.jdbc;
2-
3-
/*-
4-
* #%L
5-
* SqlEngine Database Adapter Oracle 12c
6-
* %%
7-
* Copyright (C) 2003 - 2021 XDEV Software
8-
* %%
1+
/*
2+
* SqlEngine Database Adapter Oracle 12c - XAPI SqlEngine Database Adapter for Oracle 12c
3+
* Copyright © 2003 XDEV Software (https://xdev.software)
4+
*
95
* This program is free software: you can redistribute it and/or modify
10-
* it under the terms of the GNU Lesser General Public License as
11-
* published by the Free Software Foundation, either version 3 of the
12-
* License, or (at your option) any later version.
13-
*
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
1410
* This program is distributed in the hope that it will be useful,
1511
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1612
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17-
* GNU General Lesser Public License for more details.
18-
*
19-
* You should have received a copy of the GNU General Lesser Public
20-
* License along with this program. If not, see
21-
* <http://www.gnu.org/licenses/lgpl-3.0.html>.
22-
* #L%
13+
* GNU Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2317
*/
24-
18+
package xdev.db.oracle12c.jdbc;
2519

2620
import java.sql.SQLException;
2721

src/main/java/xdev/db/oracle12c/jdbc/Oracle12cJDBCConnection.java

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,21 @@
1-
package xdev.db.oracle12c.jdbc;
2-
3-
/*-
4-
* #%L
5-
* SqlEngine Database Adapter Oracle 12c
6-
* %%
7-
* Copyright (C) 2003 - 2021 XDEV Software
8-
* %%
1+
/*
2+
* SqlEngine Database Adapter Oracle 12c - XAPI SqlEngine Database Adapter for Oracle 12c
3+
* Copyright © 2003 XDEV Software (https://xdev.software)
4+
*
95
* This program is free software: you can redistribute it and/or modify
10-
* it under the terms of the GNU Lesser General Public License as
11-
* published by the Free Software Foundation, either version 3 of the
12-
* License, or (at your option) any later version.
13-
*
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
1410
* This program is distributed in the hope that it will be useful,
1511
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1612
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17-
* GNU General Lesser Public License for more details.
18-
*
19-
* You should have received a copy of the GNU General Lesser Public
20-
* License along with this program. If not, see
21-
* <http://www.gnu.org/licenses/lgpl-3.0.html>.
22-
* #L%
13+
* GNU Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2317
*/
24-
18+
package xdev.db.oracle12c.jdbc;
2519

2620
import java.sql.Blob;
2721
import java.sql.CallableStatement;

src/main/java/xdev/db/oracle12c/jdbc/Oracle12cJDBCDataSource.java

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,21 @@
1-
package xdev.db.oracle12c.jdbc;
2-
3-
/*-
4-
* #%L
5-
* SqlEngine Database Adapter Oracle 12c
6-
* %%
7-
* Copyright (C) 2003 - 2021 XDEV Software
8-
* %%
1+
/*
2+
* SqlEngine Database Adapter Oracle 12c - XAPI SqlEngine Database Adapter for Oracle 12c
3+
* Copyright © 2003 XDEV Software (https://xdev.software)
4+
*
95
* This program is free software: you can redistribute it and/or modify
10-
* it under the terms of the GNU Lesser General Public License as
11-
* published by the Free Software Foundation, either version 3 of the
12-
* License, or (at your option) any later version.
13-
*
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
1410
* This program is distributed in the hope that it will be useful,
1511
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1612
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17-
* GNU General Lesser Public License for more details.
18-
*
19-
* You should have received a copy of the GNU General Lesser Public
20-
* License along with this program. If not, see
21-
* <http://www.gnu.org/licenses/lgpl-3.0.html>.
22-
* #L%
13+
* GNU Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2317
*/
24-
18+
package xdev.db.oracle12c.jdbc;
2519

2620
import xdev.db.DBException;
2721
import xdev.db.jdbc.JDBCDataSource;

src/main/java/xdev/db/oracle12c/jdbc/Oracle12cJDBCMetaData.java

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,21 @@
1-
package xdev.db.oracle12c.jdbc;
2-
3-
/*-
4-
* #%L
5-
* SqlEngine Database Adapter Oracle 12c
6-
* %%
7-
* Copyright (C) 2003 - 2021 XDEV Software
8-
* %%
1+
/*
2+
* SqlEngine Database Adapter Oracle 12c - XAPI SqlEngine Database Adapter for Oracle 12c
3+
* Copyright © 2003 XDEV Software (https://xdev.software)
4+
*
95
* This program is free software: you can redistribute it and/or modify
10-
* it under the terms of the GNU Lesser General Public License as
11-
* published by the Free Software Foundation, either version 3 of the
12-
* License, or (at your option) any later version.
13-
*
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
1410
* This program is distributed in the hope that it will be useful,
1511
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1612
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17-
* GNU General Lesser Public License for more details.
18-
*
19-
* You should have received a copy of the GNU General Lesser Public
20-
* License along with this program. If not, see
21-
* <http://www.gnu.org/licenses/lgpl-3.0.html>.
22-
* #L%
13+
* GNU Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2317
*/
24-
18+
package xdev.db.oracle12c.jdbc;
2519

2620
import java.sql.DatabaseMetaData;
2721
import java.sql.ResultSet;

src/main/java/xdev/db/oracle12c/jdbc/Oracle12cRetrospectionAccessor.java

Lines changed: 13 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,21 @@
1-
package xdev.db.oracle12c.jdbc;
2-
3-
/*-
4-
* #%L
5-
* SqlEngine Database Adapter Oracle 12c
6-
* %%
7-
* Copyright (C) 2003 - 2021 XDEV Software
8-
* %%
1+
/*
2+
* SqlEngine Database Adapter Oracle 12c - XAPI SqlEngine Database Adapter for Oracle 12c
3+
* Copyright © 2003 XDEV Software (https://xdev.software)
4+
*
95
* This program is free software: you can redistribute it and/or modify
10-
* it under the terms of the GNU Lesser General Public License as
11-
* published by the Free Software Foundation, either version 3 of the
12-
* License, or (at your option) any later version.
13-
*
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
1410
* This program is distributed in the hope that it will be useful,
1511
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1612
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17-
* GNU General Lesser Public License for more details.
18-
*
19-
* You should have received a copy of the GNU General Lesser Public
20-
* License along with this program. If not, see
21-
* <http://www.gnu.org/licenses/lgpl-3.0.html>.
22-
* #L%
13+
* GNU Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2317
*/
24-
18+
package xdev.db.oracle12c.jdbc;
2519

2620
import static com.xdev.jadoth.sqlengine.SQL.LANG.AND;
2721
import static com.xdev.jadoth.sqlengine.SQL.LANG.COUNT;

0 commit comments

Comments
 (0)