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

Commit f49ae4c

Browse files
Implemented the license doc
1 parent ac5f337 commit f49ae4c

10 files changed

+220
-5
lines changed

src/main/java/xdev/db/sybase/jdbc/SybaseConnectionInformation.java

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
package xdev.db.sybase.jdbc;
22

3+
/*-
4+
* #%L
5+
* SqlEngine Database Adapter Sybase
6+
* %%
7+
* Copyright (C) 2003 - 2023 XDEV Software
8+
* %%
9+
* 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+
*
14+
* This program is distributed in the hope that it will be useful,
15+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
* 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%
23+
*/
24+
325

426
import java.sql.Connection;
527
import java.util.Properties;

src/main/java/xdev/db/sybase/jdbc/SybaseDDLMapper.java

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,35 @@
11
package xdev.db.sybase.jdbc;
22

3+
/*-
4+
* #%L
5+
* SqlEngine Database Adapter Sybase
6+
* %%
7+
* Copyright (C) 2003 - 2023 XDEV Software
8+
* %%
9+
* 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+
*
14+
* This program is distributed in the hope that it will be useful,
15+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
* 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%
23+
*/
24+
325

426
import java.util.Hashtable;
527

6-
import com.xdev.jadoth.licensing.License;
728
import com.xdev.jadoth.sqlengine.SQL;
829
import com.xdev.jadoth.sqlengine.SQL.DATATYPE;
930
import com.xdev.jadoth.sqlengine.SQL.INDEXTYPE;
1031
import com.xdev.jadoth.sqlengine.dbms.standard.StandardDDLMapper;
1132
import com.xdev.jadoth.sqlengine.internal.tables.SqlTableIdentity;
12-
import com.xdev.jadoth.sqlengine.license.SqlEngineLicense;
1333

1434

1535
public class SybaseDDLMapper extends StandardDDLMapper<SybaseDbms>

src/main/java/xdev/db/sybase/jdbc/SybaseDMLAssembler.java

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
package xdev.db.sybase.jdbc;
22

3+
/*-
4+
* #%L
5+
* SqlEngine Database Adapter Sybase
6+
* %%
7+
* Copyright (C) 2003 - 2023 XDEV Software
8+
* %%
9+
* 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+
*
14+
* This program is distributed in the hope that it will be useful,
15+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
* 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%
23+
*/
24+
325

426
import static com.xdev.jadoth.sqlengine.SQL.LANG.TOP;
527
import static com.xdev.jadoth.sqlengine.SQL.LANG.UNION;

src/main/java/xdev/db/sybase/jdbc/SybaseDbms.java

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,28 @@
11

22
package xdev.db.sybase.jdbc;
33

4+
/*-
5+
* #%L
6+
* SqlEngine Database Adapter Sybase
7+
* %%
8+
* Copyright (C) 2003 - 2023 XDEV Software
9+
* %%
10+
* This program is free software: you can redistribute it and/or modify
11+
* it under the terms of the GNU Lesser General Public License as
12+
* published by the Free Software Foundation, either version 3 of the
13+
* License, or (at your option) any later version.
14+
*
15+
* This program is distributed in the hope that it will be useful,
16+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18+
* GNU General Lesser Public License for more details.
19+
*
20+
* You should have received a copy of the GNU General Lesser Public
21+
* License along with this program. If not, see
22+
* <http://www.gnu.org/licenses/lgpl-3.0.html>.
23+
* #L%
24+
*/
25+
426

527
import com.xdev.jadoth.sqlengine.dbms.DbmsAdaptor;
628
import com.xdev.jadoth.sqlengine.dbms.SQLExceptionParser;

src/main/java/xdev/db/sybase/jdbc/SybaseExceptionParser.java

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,32 @@
11
package xdev.db.sybase.jdbc;
22

3+
/*-
4+
* #%L
5+
* SqlEngine Database Adapter Sybase
6+
* %%
7+
* Copyright (C) 2003 - 2023 XDEV Software
8+
* %%
9+
* 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+
*
14+
* This program is distributed in the hope that it will be useful,
15+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
* 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%
23+
*/
24+
325

426
import java.sql.SQLException;
527

6-
import com.xdev.jadoth.licensing.License;
728
import com.xdev.jadoth.sqlengine.dbms.SQLExceptionParser;
829
import com.xdev.jadoth.sqlengine.exceptions.SQLEngineException;
9-
import com.xdev.jadoth.sqlengine.license.SqlEngineLicense;
1030

1131

1232

src/main/java/xdev/db/sybase/jdbc/SybaseJDBCConnection.java

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
package xdev.db.sybase.jdbc;
22

3+
/*-
4+
* #%L
5+
* SqlEngine Database Adapter Sybase
6+
* %%
7+
* Copyright (C) 2003 - 2023 XDEV Software
8+
* %%
9+
* 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+
*
14+
* This program is distributed in the hope that it will be useful,
15+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
* 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%
23+
*/
24+
325

426
import java.sql.Blob;
527
import java.sql.Clob;

src/main/java/xdev/db/sybase/jdbc/SybaseJDBCDataSource.java

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
package xdev.db.sybase.jdbc;
22

3+
/*-
4+
* #%L
5+
* SqlEngine Database Adapter Sybase
6+
* %%
7+
* Copyright (C) 2003 - 2023 XDEV Software
8+
* %%
9+
* 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+
*
14+
* This program is distributed in the hope that it will be useful,
15+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
* 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%
23+
*/
24+
325

426
import xdev.db.DBException;
527
import xdev.db.jdbc.JDBCDataSource;

src/main/java/xdev/db/sybase/jdbc/SybaseJDBCMetaData.java

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
package xdev.db.sybase.jdbc;
22

3+
/*-
4+
* #%L
5+
* SqlEngine Database Adapter Sybase
6+
* %%
7+
* Copyright (C) 2003 - 2023 XDEV Software
8+
* %%
9+
* 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+
*
14+
* This program is distributed in the hope that it will be useful,
15+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
* 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%
23+
*/
24+
325

426
import java.sql.Connection;
527
import java.sql.DatabaseMetaData;
@@ -11,7 +33,6 @@
1133
import java.util.EnumSet;
1234
import java.util.HashMap;
1335
import java.util.HashSet;
14-
import java.util.Hashtable;
1536
import java.util.List;
1637
import java.util.Map;
1738
import java.util.Set;

src/main/java/xdev/db/sybase/jdbc/SybaseRetrospectionAccessor.java

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
package xdev.db.sybase.jdbc;
22

3+
/*-
4+
* #%L
5+
* SqlEngine Database Adapter Sybase
6+
* %%
7+
* Copyright (C) 2003 - 2023 XDEV Software
8+
* %%
9+
* 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+
*
14+
* This program is distributed in the hope that it will be useful,
15+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
* 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%
23+
*/
24+
325

426
import com.xdev.jadoth.sqlengine.dbms.standard.StandardRetrospectionAccessor;
527
import com.xdev.jadoth.sqlengine.exceptions.SQLEngineException;

src/main/java/xdev/db/sybase/jdbc/SybaseSyntax.java

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
package xdev.db.sybase.jdbc;
22

3+
/*-
4+
* #%L
5+
* SqlEngine Database Adapter Sybase
6+
* %%
7+
* Copyright (C) 2003 - 2023 XDEV Software
8+
* %%
9+
* 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+
*
14+
* This program is distributed in the hope that it will be useful,
15+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
* 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%
23+
*/
24+
325

426
import com.xdev.jadoth.sqlengine.dbms.DbmsSyntax;
527

0 commit comments

Comments
 (0)