sql_dictionary.py 1.2 KB

1234567891011121314151617181920212223242526
  1. """
  2. ***************************************************************************
  3. sql_dictionary.py
  4. ---------------------
  5. Date : April 2012
  6. Copyright : (C) 2012 by Giuseppe Sucameli
  7. Email : brush dot tyler at gmail dot com
  8. ***************************************************************************
  9. * *
  10. * This program is free software; you can redistribute it and/or modify *
  11. * it under the terms of the GNU General Public License as published by *
  12. * the Free Software Foundation; either version 2 of the License, or *
  13. * (at your option) any later version. *
  14. * *
  15. ***************************************************************************
  16. """
  17. def getSqlDictionary(spatial=True):
  18. from ..spatialite.sql_dictionary import getSqlDictionary
  19. return getSqlDictionary(spatial)
  20. def getQueryBuilderDictionary():
  21. from ..spatialite.sql_dictionary import getQueryBuilderDictionary
  22. return getQueryBuilderDictionary()