aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/com/healthmarketscience/jackcess/query
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/healthmarketscience/jackcess/query')
-rw-r--r--src/main/java/com/healthmarketscience/jackcess/query/AppendQuery.java25
-rw-r--r--src/main/java/com/healthmarketscience/jackcess/query/BaseSelectQuery.java25
-rw-r--r--src/main/java/com/healthmarketscience/jackcess/query/CrossTabQuery.java25
-rw-r--r--src/main/java/com/healthmarketscience/jackcess/query/DataDefinitionQuery.java21
-rw-r--r--src/main/java/com/healthmarketscience/jackcess/query/DeleteQuery.java25
-rw-r--r--src/main/java/com/healthmarketscience/jackcess/query/MakeTableQuery.java25
-rw-r--r--src/main/java/com/healthmarketscience/jackcess/query/PassthroughQuery.java25
-rw-r--r--src/main/java/com/healthmarketscience/jackcess/query/Query.java25
-rw-r--r--src/main/java/com/healthmarketscience/jackcess/query/SelectQuery.java21
-rw-r--r--src/main/java/com/healthmarketscience/jackcess/query/UnionQuery.java25
-rw-r--r--src/main/java/com/healthmarketscience/jackcess/query/UpdateQuery.java25
11 files changed, 117 insertions, 150 deletions
diff --git a/src/main/java/com/healthmarketscience/jackcess/query/AppendQuery.java b/src/main/java/com/healthmarketscience/jackcess/query/AppendQuery.java
index 96ae5ad..a62c286 100644
--- a/src/main/java/com/healthmarketscience/jackcess/query/AppendQuery.java
+++ b/src/main/java/com/healthmarketscience/jackcess/query/AppendQuery.java
@@ -1,20 +1,17 @@
/*
Copyright (c) 2013 James Ahlborn
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-USA
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
*/
package com.healthmarketscience.jackcess.query;
diff --git a/src/main/java/com/healthmarketscience/jackcess/query/BaseSelectQuery.java b/src/main/java/com/healthmarketscience/jackcess/query/BaseSelectQuery.java
index 107dbe9..d374e61 100644
--- a/src/main/java/com/healthmarketscience/jackcess/query/BaseSelectQuery.java
+++ b/src/main/java/com/healthmarketscience/jackcess/query/BaseSelectQuery.java
@@ -1,20 +1,17 @@
/*
Copyright (c) 2013 James Ahlborn
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-USA
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
*/
package com.healthmarketscience.jackcess.query;
diff --git a/src/main/java/com/healthmarketscience/jackcess/query/CrossTabQuery.java b/src/main/java/com/healthmarketscience/jackcess/query/CrossTabQuery.java
index c0a0543..e8a41a4 100644
--- a/src/main/java/com/healthmarketscience/jackcess/query/CrossTabQuery.java
+++ b/src/main/java/com/healthmarketscience/jackcess/query/CrossTabQuery.java
@@ -1,20 +1,17 @@
/*
Copyright (c) 2013 James Ahlborn
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-USA
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
*/
package com.healthmarketscience.jackcess.query;
diff --git a/src/main/java/com/healthmarketscience/jackcess/query/DataDefinitionQuery.java b/src/main/java/com/healthmarketscience/jackcess/query/DataDefinitionQuery.java
index 12ee74c..6f550c7 100644
--- a/src/main/java/com/healthmarketscience/jackcess/query/DataDefinitionQuery.java
+++ b/src/main/java/com/healthmarketscience/jackcess/query/DataDefinitionQuery.java
@@ -1,20 +1,17 @@
/*
Copyright (c) 2013 James Ahlborn
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
+ http://www.apache.org/licenses/LICENSE-2.0
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-USA
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
*/
package com.healthmarketscience.jackcess.query;
diff --git a/src/main/java/com/healthmarketscience/jackcess/query/DeleteQuery.java b/src/main/java/com/healthmarketscience/jackcess/query/DeleteQuery.java
index b598c8b..fdd3bff 100644
--- a/src/main/java/com/healthmarketscience/jackcess/query/DeleteQuery.java
+++ b/src/main/java/com/healthmarketscience/jackcess/query/DeleteQuery.java
@@ -1,20 +1,17 @@
/*
Copyright (c) 2013 James Ahlborn
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-USA
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
*/
package com.healthmarketscience.jackcess.query;
diff --git a/src/main/java/com/healthmarketscience/jackcess/query/MakeTableQuery.java b/src/main/java/com/healthmarketscience/jackcess/query/MakeTableQuery.java
index f7798e0..b6945a9 100644
--- a/src/main/java/com/healthmarketscience/jackcess/query/MakeTableQuery.java
+++ b/src/main/java/com/healthmarketscience/jackcess/query/MakeTableQuery.java
@@ -1,20 +1,17 @@
/*
Copyright (c) 2013 James Ahlborn
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-USA
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
*/
package com.healthmarketscience.jackcess.query;
diff --git a/src/main/java/com/healthmarketscience/jackcess/query/PassthroughQuery.java b/src/main/java/com/healthmarketscience/jackcess/query/PassthroughQuery.java
index 7004cee..b7ac836 100644
--- a/src/main/java/com/healthmarketscience/jackcess/query/PassthroughQuery.java
+++ b/src/main/java/com/healthmarketscience/jackcess/query/PassthroughQuery.java
@@ -1,20 +1,17 @@
/*
Copyright (c) 2013 James Ahlborn
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-USA
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
*/
package com.healthmarketscience.jackcess.query;
diff --git a/src/main/java/com/healthmarketscience/jackcess/query/Query.java b/src/main/java/com/healthmarketscience/jackcess/query/Query.java
index 991d53a..4d4d9a3 100644
--- a/src/main/java/com/healthmarketscience/jackcess/query/Query.java
+++ b/src/main/java/com/healthmarketscience/jackcess/query/Query.java
@@ -1,20 +1,17 @@
/*
Copyright (c) 2013 James Ahlborn
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-USA
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
*/
package com.healthmarketscience.jackcess.query;
diff --git a/src/main/java/com/healthmarketscience/jackcess/query/SelectQuery.java b/src/main/java/com/healthmarketscience/jackcess/query/SelectQuery.java
index 7ada9b2..59328cb 100644
--- a/src/main/java/com/healthmarketscience/jackcess/query/SelectQuery.java
+++ b/src/main/java/com/healthmarketscience/jackcess/query/SelectQuery.java
@@ -1,20 +1,17 @@
/*
Copyright (c) 2013 James Ahlborn
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
+ http://www.apache.org/licenses/LICENSE-2.0
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-USA
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
*/
package com.healthmarketscience.jackcess.query;
diff --git a/src/main/java/com/healthmarketscience/jackcess/query/UnionQuery.java b/src/main/java/com/healthmarketscience/jackcess/query/UnionQuery.java
index 6b8a1fb..a0382ba 100644
--- a/src/main/java/com/healthmarketscience/jackcess/query/UnionQuery.java
+++ b/src/main/java/com/healthmarketscience/jackcess/query/UnionQuery.java
@@ -1,20 +1,17 @@
/*
Copyright (c) 2013 James Ahlborn
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-USA
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
*/
package com.healthmarketscience.jackcess.query;
diff --git a/src/main/java/com/healthmarketscience/jackcess/query/UpdateQuery.java b/src/main/java/com/healthmarketscience/jackcess/query/UpdateQuery.java
index f2990a1..a7b9834 100644
--- a/src/main/java/com/healthmarketscience/jackcess/query/UpdateQuery.java
+++ b/src/main/java/com/healthmarketscience/jackcess/query/UpdateQuery.java
@@ -1,20 +1,17 @@
/*
Copyright (c) 2013 James Ahlborn
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU Lesser General Public
-License as published by the Free Software Foundation; either
-version 2.1 of the License, or (at your option) any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-Lesser General Public License for more details.
-
-You should have received a copy of the GNU Lesser General Public
-License along with this library; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
-USA
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
*/
package com.healthmarketscience.jackcess.query;