예제 #1
0
파일: datasource.py 프로젝트: GeyseR/django
 def name(self):
     "Return the name of the data source."
     name = capi.get_ds_name(self._ptr)
     return force_text(name, self.encoding, strings_only=True)
예제 #2
0
 def name(self):
     "Returns the name of the data source."
     name = capi.get_ds_name(self._ptr)
     return force_text(name, self.encoding, strings_only=True)
예제 #3
0
 def name(self):
     "Returns the name of the data source."
     return get_ds_name(self._ptr)
예제 #4
0
파일: datasource.py 프로젝트: xyxzfj/django
 def name(self):
     "Returns the name of the data source."
     return capi.get_ds_name(self._ptr)
예제 #5
0
 def name(self):
     "Return the name of the table_s source."
     name = capi.get_ds_name(self._ptr)
     return force_str(name, self.encoding, strings_only=True)