Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.53 KB | None | 0 0
  1. @Basic
  2. @Column(name = "AdminPickDate", nullable = true)
  3. public Timestamp getAdminPickDate() {
  4. return adminPickDate;
  5. }
  6.  
  7. <?xml version="1.0" encoding="UTF-8"?>
  8. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  9. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  10. <modelVersion>4.0.0</modelVersion>
  11.  
  12. <groupId>com.didi.home.dao</groupId>
  13. <artifactId>didi-home-dao</artifactId>
  14. <version>0.0.1-SNAPSHOT</version>
  15. <packaging>jar</packaging>
  16.  
  17. <name>didi-home-dao</name>
  18. <description>didi home data producer</description>
  19.  
  20. <parent>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-parent</artifactId>
  23. <version>1.4.1.RELEASE</version>
  24. <relativePath/> <!-- lookup parent from repository -->
  25. </parent>
  26.  
  27. <properties>
  28. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  29. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  30. <java.version>1.8</java.version>
  31. </properties>
  32.  
  33. <dependencies>
  34. <dependency>
  35. <groupId>com.didi.home.model</groupId>
  36. <artifactId>didi-home-model</artifactId>
  37. <version>1.0.0-SNAPSHOT</version>
  38. </dependency>
  39.  
  40. <dependency>
  41. <groupId>com.microsoft.sqlserver</groupId>
  42. <artifactId>sqljdbc4</artifactId>
  43. <version>4.0</version>
  44. </dependency>
  45.  
  46. <dependency>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-starter-data-jpa</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-starter-jdbc</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-test</artifactId>
  57. <scope>test</scope>
  58. </dependency>
  59.  
  60. </dependencies>
  61.  
  62. <build>
  63. <plugins>
  64. <plugin>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-maven-plugin</artifactId>
  67. </plugin>
  68. </plugins>
  69. </build>
  70.  
  71.  
  72. </project>
  73.  
  74. package com.my.home.dao;
  75.  
  76. import com.didi.home.model.DdForumArticle;
  77. import org.springframework.data.jpa.repository.JpaRepository;
  78. import org.springframework.stereotype.Component;
  79.  
  80. /**
  81. * Created by jacks808@163.com on 2017/1/13.
  82. */
  83. @Component
  84. public interface DdForumArticleRepository extends JpaRepository<DdForumArticle, Integer> {
  85. }
  86.  
  87. package com.didi.home.model;
  88.  
  89. import javax.persistence.Basic;
  90. import javax.persistence.Column;
  91. import javax.persistence.Entity;
  92. import javax.persistence.Id;
  93. import javax.persistence.Table;
  94. import java.sql.Timestamp;
  95.  
  96. /**
  97. * Created by jacks808@163.com on 2017/1/13.
  98. */
  99. // , schema = "dbo", catalog = "DB_DiDiWeb"
  100. @Entity
  101. @Table(name = "DD_Forum_Article")
  102. public class DdForumArticle {
  103. private int articleId;
  104. private Integer articleType;
  105. private String articleTitle;
  106. private String content;
  107. private String brief;
  108. private String atWho;
  109. private String imgUrl;
  110. private String tags;
  111. private String config;
  112. private Integer viewCount;
  113. private Integer likeCount;
  114. private Integer commentCount;
  115. private Integer commentEnable;
  116. private Timestamp commentDate;
  117. private Integer isHot;
  118. private Integer isTop;
  119. private Integer isQa;
  120. private String qaType;
  121. private Timestamp pickDate;
  122. private Timestamp adminPickDate;
  123. private Integer plateId;
  124. private String plateTitle;
  125. private Integer classifyId;
  126. private String classifyTitle;
  127. private Integer userInfoId;
  128. private String userName;
  129. private String userCode;
  130. private Integer delFlag;
  131. private String createBy;
  132. private Timestamp createDate;
  133. private String modifyBy;
  134. private Timestamp modifyDate;
  135. private Integer isAnonymous;
  136. private Integer isDelAllow;
  137. private String comeFrom;
  138.  
  139. @Id
  140. @Column(name = "ArticleID", nullable = false)
  141. public int getArticleId() {
  142. return articleId;
  143. }
  144.  
  145. public void setArticleId(int articleId) {
  146. this.articleId = articleId;
  147. }
  148.  
  149. @Basic
  150. @Column(name = "ArticleType", nullable = true)
  151. public Integer getArticleType() {
  152. return articleType;
  153. }
  154.  
  155. public void setArticleType(Integer articleType) {
  156. this.articleType = articleType;
  157. }
  158.  
  159. @Basic
  160. @Column(name = "ArticleTitle", nullable = true, length = 100)
  161. public String getArticleTitle() {
  162. return articleTitle;
  163. }
  164.  
  165. public void setArticleTitle(String articleTitle) {
  166. this.articleTitle = articleTitle;
  167. }
  168.  
  169. @Basic
  170. @Column(name = "Content", nullable = true, length = 2147483647)
  171. public String getContent() {
  172. return content;
  173. }
  174.  
  175. public void setContent(String content) {
  176. this.content = content;
  177. }
  178.  
  179. @Basic
  180. @Column(name = "Brief", nullable = true, length = 255)
  181. public String getBrief() {
  182. return brief;
  183. }
  184.  
  185. public void setBrief(String brief) {
  186. this.brief = brief;
  187. }
  188.  
  189. @Basic
  190. @Column(name = "AtWho", nullable = true, length = 2147483647)
  191. public String getAtWho() {
  192. return atWho;
  193. }
  194.  
  195. public void setAtWho(String atWho) {
  196. this.atWho = atWho;
  197. }
  198.  
  199. @Basic
  200. @Column(name = "ImgUrl", nullable = true, length = 2147483647)
  201. public String getImgUrl() {
  202. return imgUrl;
  203. }
  204.  
  205. public void setImgUrl(String imgUrl) {
  206. this.imgUrl = imgUrl;
  207. }
  208.  
  209. @Basic
  210. @Column(name = "Tags", nullable = true, length = 255)
  211. public String getTags() {
  212. return tags;
  213. }
  214.  
  215. public void setTags(String tags) {
  216. this.tags = tags;
  217. }
  218.  
  219. @Basic
  220. @Column(name = "Config", nullable = true, length = 2147483647)
  221. public String getConfig() {
  222. return config;
  223. }
  224.  
  225. public void setConfig(String config) {
  226. this.config = config;
  227. }
  228.  
  229. @Basic
  230. @Column(name = "ViewCount", nullable = true)
  231. public Integer getViewCount() {
  232. return viewCount;
  233. }
  234.  
  235. public void setViewCount(Integer viewCount) {
  236. this.viewCount = viewCount;
  237. }
  238.  
  239. @Basic
  240. @Column(name = "LikeCount", nullable = true)
  241. public Integer getLikeCount() {
  242. return likeCount;
  243. }
  244.  
  245. public void setLikeCount(Integer likeCount) {
  246. this.likeCount = likeCount;
  247. }
  248.  
  249. @Basic
  250. @Column(name = "CommentCount", nullable = true)
  251. public Integer getCommentCount() {
  252. return commentCount;
  253. }
  254.  
  255. public void setCommentCount(Integer commentCount) {
  256. this.commentCount = commentCount;
  257. }
  258.  
  259. @Basic
  260. @Column(name = "CommentEnable", nullable = true)
  261. public Integer getCommentEnable() {
  262. return commentEnable;
  263. }
  264.  
  265. public void setCommentEnable(Integer commentEnable) {
  266. this.commentEnable = commentEnable;
  267. }
  268.  
  269. @Basic
  270. @Column(name = "CommentDate", nullable = true)
  271. public Timestamp getCommentDate() {
  272. return commentDate;
  273. }
  274.  
  275. public void setCommentDate(Timestamp commentDate) {
  276. this.commentDate = commentDate;
  277. }
  278.  
  279. @Basic
  280. @Column(name = "IsHot", nullable = true)
  281. public Integer getIsHot() {
  282. return isHot;
  283. }
  284.  
  285. public void setIsHot(Integer isHot) {
  286. this.isHot = isHot;
  287. }
  288.  
  289. @Basic
  290. @Column(name = "IsTop", nullable = true)
  291. public Integer getIsTop() {
  292. return isTop;
  293. }
  294.  
  295. public void setIsTop(Integer isTop) {
  296. this.isTop = isTop;
  297. }
  298.  
  299. @Basic
  300. @Column(name = "IsQA", nullable = true)
  301. public Integer getIsQa() {
  302. return isQa;
  303. }
  304.  
  305. public void setIsQa(Integer isQa) {
  306. this.isQa = isQa;
  307. }
  308.  
  309. @Basic
  310. @Column(name = "QAType", nullable = true, length = 10)
  311. public String getQaType() {
  312. return qaType;
  313. }
  314.  
  315. public void setQaType(String qaType) {
  316. this.qaType = qaType;
  317. }
  318.  
  319. @Basic
  320. @Column(name = "PickDate", nullable = true)
  321. public Timestamp getPickDate() {
  322. return pickDate;
  323. }
  324.  
  325. public void setPickDate(Timestamp pickDate) {
  326. this.pickDate = pickDate;
  327. }
  328.  
  329. @Basic
  330. @Column(name = "AdminPickDate", nullable = true)
  331. public Timestamp getAdminPickDate() {
  332. return adminPickDate;
  333. }
  334.  
  335. public void setAdminPickDate(Timestamp adminPickDate) {
  336. this.adminPickDate = adminPickDate;
  337. }
  338.  
  339. @Basic
  340. @Column(name = "PlateID", nullable = true)
  341. public Integer getPlateId() {
  342. return plateId;
  343. }
  344.  
  345. public void setPlateId(Integer plateId) {
  346. this.plateId = plateId;
  347. }
  348.  
  349. @Basic
  350. @Column(name = "PlateTitle", nullable = true, length = 32)
  351. public String getPlateTitle() {
  352. return plateTitle;
  353. }
  354.  
  355. public void setPlateTitle(String plateTitle) {
  356. this.plateTitle = plateTitle;
  357. }
  358.  
  359. @Basic
  360. @Column(name = "ClassifyID", nullable = true)
  361. public Integer getClassifyId() {
  362. return classifyId;
  363. }
  364.  
  365. public void setClassifyId(Integer classifyId) {
  366. this.classifyId = classifyId;
  367. }
  368.  
  369. @Basic
  370. @Column(name = "ClassifyTitle", nullable = true, length = 32)
  371. public String getClassifyTitle() {
  372. return classifyTitle;
  373. }
  374.  
  375. public void setClassifyTitle(String classifyTitle) {
  376. this.classifyTitle = classifyTitle;
  377. }
  378.  
  379. @Basic
  380. @Column(name = "UserInfoID", nullable = true)
  381. public Integer getUserInfoId() {
  382. return userInfoId;
  383. }
  384.  
  385. public void setUserInfoId(Integer userInfoId) {
  386. this.userInfoId = userInfoId;
  387. }
  388.  
  389. @Basic
  390. @Column(name = "UserName", nullable = true, length = 32)
  391. public String getUserName() {
  392. return userName;
  393. }
  394.  
  395. public void setUserName(String userName) {
  396. this.userName = userName;
  397. }
  398.  
  399. @Basic
  400. @Column(name = "UserCode", nullable = true, length = 32)
  401. public String getUserCode() {
  402. return userCode;
  403. }
  404.  
  405. public void setUserCode(String userCode) {
  406. this.userCode = userCode;
  407. }
  408.  
  409. @Basic
  410. @Column(name = "DelFlag", nullable = true)
  411. public Integer getDelFlag() {
  412. return delFlag;
  413. }
  414.  
  415. public void setDelFlag(Integer delFlag) {
  416. this.delFlag = delFlag;
  417. }
  418.  
  419. @Basic
  420. @Column(name = "CreateBy", nullable = true, length = 32)
  421. public String getCreateBy() {
  422. return createBy;
  423. }
  424.  
  425. public void setCreateBy(String createBy) {
  426. this.createBy = createBy;
  427. }
  428.  
  429. @Basic
  430. @Column(name = "CreateDate", nullable = true)
  431. public Timestamp getCreateDate() {
  432. return createDate;
  433. }
  434.  
  435. public void setCreateDate(Timestamp createDate) {
  436. this.createDate = createDate;
  437. }
  438.  
  439. @Basic
  440. @Column(name = "ModifyBy", nullable = true, length = 32)
  441. public String getModifyBy() {
  442. return modifyBy;
  443. }
  444.  
  445. public void setModifyBy(String modifyBy) {
  446. this.modifyBy = modifyBy;
  447. }
  448.  
  449. @Basic
  450. @Column(name = "ModifyDate", nullable = true)
  451. public Timestamp getModifyDate() {
  452. return modifyDate;
  453. }
  454.  
  455. public void setModifyDate(Timestamp modifyDate) {
  456. this.modifyDate = modifyDate;
  457. }
  458.  
  459. @Basic
  460. @Column(name = "IsAnonymous", nullable = true)
  461. public Integer getIsAnonymous() {
  462. return isAnonymous;
  463. }
  464.  
  465. public void setIsAnonymous(Integer isAnonymous) {
  466. this.isAnonymous = isAnonymous;
  467. }
  468.  
  469. @Basic
  470. @Column(name = "IsDelAllow", nullable = true)
  471. public Integer getIsDelAllow() {
  472. return isDelAllow;
  473. }
  474.  
  475. public void setIsDelAllow(Integer isDelAllow) {
  476. this.isDelAllow = isDelAllow;
  477. }
  478.  
  479. @Basic
  480. @Column(name = "ComeFrom", nullable = true, length = 32)
  481. public String getComeFrom() {
  482. return comeFrom;
  483. }
  484.  
  485. public void setComeFrom(String comeFrom) {
  486. this.comeFrom = comeFrom;
  487. }
  488.  
  489. @Override
  490. public boolean equals(Object o) {
  491. if (this == o) return true;
  492. if (o == null || getClass() != o.getClass()) return false;
  493.  
  494. DdForumArticle that = (DdForumArticle) o;
  495.  
  496. if (articleId != that.articleId) return false;
  497. if (articleType != null ? !articleType.equals(that.articleType) : that.articleType != null) return false;
  498. if (articleTitle != null ? !articleTitle.equals(that.articleTitle) : that.articleTitle != null) return false;
  499. if (content != null ? !content.equals(that.content) : that.content != null) return false;
  500. if (brief != null ? !brief.equals(that.brief) : that.brief != null) return false;
  501. if (atWho != null ? !atWho.equals(that.atWho) : that.atWho != null) return false;
  502. if (imgUrl != null ? !imgUrl.equals(that.imgUrl) : that.imgUrl != null) return false;
  503. if (tags != null ? !tags.equals(that.tags) : that.tags != null) return false;
  504. if (config != null ? !config.equals(that.config) : that.config != null) return false;
  505. if (viewCount != null ? !viewCount.equals(that.viewCount) : that.viewCount != null) return false;
  506. if (likeCount != null ? !likeCount.equals(that.likeCount) : that.likeCount != null) return false;
  507. if (commentCount != null ? !commentCount.equals(that.commentCount) : that.commentCount != null) return false;
  508. if (commentEnable != null ? !commentEnable.equals(that.commentEnable) : that.commentEnable != null)
  509. return false;
  510. if (commentDate != null ? !commentDate.equals(that.commentDate) : that.commentDate != null) return false;
  511. if (isHot != null ? !isHot.equals(that.isHot) : that.isHot != null) return false;
  512. if (isTop != null ? !isTop.equals(that.isTop) : that.isTop != null) return false;
  513. if (isQa != null ? !isQa.equals(that.isQa) : that.isQa != null) return false;
  514. if (qaType != null ? !qaType.equals(that.qaType) : that.qaType != null) return false;
  515. if (pickDate != null ? !pickDate.equals(that.pickDate) : that.pickDate != null) return false;
  516. if (adminPickDate != null ? !adminPickDate.equals(that.adminPickDate) : that.adminPickDate != null)
  517. return false;
  518. if (plateId != null ? !plateId.equals(that.plateId) : that.plateId != null) return false;
  519. if (plateTitle != null ? !plateTitle.equals(that.plateTitle) : that.plateTitle != null) return false;
  520. if (classifyId != null ? !classifyId.equals(that.classifyId) : that.classifyId != null) return false;
  521. if (classifyTitle != null ? !classifyTitle.equals(that.classifyTitle) : that.classifyTitle != null)
  522. return false;
  523. if (userInfoId != null ? !userInfoId.equals(that.userInfoId) : that.userInfoId != null) return false;
  524. if (userName != null ? !userName.equals(that.userName) : that.userName != null) return false;
  525. if (userCode != null ? !userCode.equals(that.userCode) : that.userCode != null) return false;
  526. if (delFlag != null ? !delFlag.equals(that.delFlag) : that.delFlag != null) return false;
  527. if (createBy != null ? !createBy.equals(that.createBy) : that.createBy != null) return false;
  528. if (createDate != null ? !createDate.equals(that.createDate) : that.createDate != null) return false;
  529. if (modifyBy != null ? !modifyBy.equals(that.modifyBy) : that.modifyBy != null) return false;
  530. if (modifyDate != null ? !modifyDate.equals(that.modifyDate) : that.modifyDate != null) return false;
  531. if (isAnonymous != null ? !isAnonymous.equals(that.isAnonymous) : that.isAnonymous != null) return false;
  532. if (isDelAllow != null ? !isDelAllow.equals(that.isDelAllow) : that.isDelAllow != null) return false;
  533. if (comeFrom != null ? !comeFrom.equals(that.comeFrom) : that.comeFrom != null) return false;
  534.  
  535. return true;
  536. }
  537.  
  538. @Override
  539. public int hashCode() {
  540. int result = articleId;
  541. result = 31 * result + (articleType != null ? articleType.hashCode() : 0);
  542. result = 31 * result + (articleTitle != null ? articleTitle.hashCode() : 0);
  543. result = 31 * result + (content != null ? content.hashCode() : 0);
  544. result = 31 * result + (brief != null ? brief.hashCode() : 0);
  545. result = 31 * result + (atWho != null ? atWho.hashCode() : 0);
  546. result = 31 * result + (imgUrl != null ? imgUrl.hashCode() : 0);
  547. result = 31 * result + (tags != null ? tags.hashCode() : 0);
  548. result = 31 * result + (config != null ? config.hashCode() : 0);
  549. result = 31 * result + (viewCount != null ? viewCount.hashCode() : 0);
  550. result = 31 * result + (likeCount != null ? likeCount.hashCode() : 0);
  551. result = 31 * result + (commentCount != null ? commentCount.hashCode() : 0);
  552. result = 31 * result + (commentEnable != null ? commentEnable.hashCode() : 0);
  553. result = 31 * result + (commentDate != null ? commentDate.hashCode() : 0);
  554. result = 31 * result + (isHot != null ? isHot.hashCode() : 0);
  555. result = 31 * result + (isTop != null ? isTop.hashCode() : 0);
  556. result = 31 * result + (isQa != null ? isQa.hashCode() : 0);
  557. result = 31 * result + (qaType != null ? qaType.hashCode() : 0);
  558. result = 31 * result + (pickDate != null ? pickDate.hashCode() : 0);
  559. result = 31 * result + (adminPickDate != null ? adminPickDate.hashCode() : 0);
  560. result = 31 * result + (plateId != null ? plateId.hashCode() : 0);
  561. result = 31 * result + (plateTitle != null ? plateTitle.hashCode() : 0);
  562. result = 31 * result + (classifyId != null ? classifyId.hashCode() : 0);
  563. result = 31 * result + (classifyTitle != null ? classifyTitle.hashCode() : 0);
  564. result = 31 * result + (userInfoId != null ? userInfoId.hashCode() : 0);
  565. result = 31 * result + (userName != null ? userName.hashCode() : 0);
  566. result = 31 * result + (userCode != null ? userCode.hashCode() : 0);
  567. result = 31 * result + (delFlag != null ? delFlag.hashCode() : 0);
  568. result = 31 * result + (createBy != null ? createBy.hashCode() : 0);
  569. result = 31 * result + (createDate != null ? createDate.hashCode() : 0);
  570. result = 31 * result + (modifyBy != null ? modifyBy.hashCode() : 0);
  571. result = 31 * result + (modifyDate != null ? modifyDate.hashCode() : 0);
  572. result = 31 * result + (isAnonymous != null ? isAnonymous.hashCode() : 0);
  573. result = 31 * result + (isDelAllow != null ? isDelAllow.hashCode() : 0);
  574. result = 31 * result + (comeFrom != null ? comeFrom.hashCode() : 0);
  575. return result;
  576. }
  577. }
  578.  
  579. package com.didi.home.dao;
  580.  
  581. import com.didi.home.model.DdForumArticle;
  582. import org.junit.Test;
  583. import org.junit.runner.RunWith;
  584. import org.springframework.beans.factory.annotation.Autowired;
  585. import org.springframework.boot.test.context.SpringBootTest;
  586. import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
  587.  
  588. /**
  589. * Created by jacks808@163.com on 2017/1/13.
  590. */
  591. @RunWith(SpringJUnit4ClassRunner.class)
  592. @SpringBootTest(classes = Application.class)
  593. public class DdForumArticleRepositoryTest {
  594.  
  595. @Autowired
  596. DdForumArticleRepository repository;
  597.  
  598. @Test
  599. public void test() {
  600. DdForumArticle one = repository.findOne(52);
  601. System.out.println(one);
  602. }
  603. }
  604.  
  605. Hibernate: select ddforumart0_.articleid as articlei1_95_0_, ddforumart0_.admin_pick_date as admin_pi2_95_0_, ddforumart0_.article_title as article_3_95_0_, ddforumart0_.article_type as article_4_95_0_, ddforumart0_.at_who as at_who5_95_0_, ddforumart0_.brief as brief6_95_0_, ddforumart0_.classifyid as classify7_95_0_, ddforumart0_.classify_title as classify8_95_0_, ddforumart0_.come_from as come_fro9_95_0_, ddforumart0_.comment_count as comment10_95_0_, ddforumart0_.comment_date as comment11_95_0_, ddforumart0_.comment_enable as comment12_95_0_, ddforumart0_.config as config13_95_0_, ddforumart0_.content as content14_95_0_, ddforumart0_.create_by as create_15_95_0_, ddforumart0_.create_date as create_16_95_0_, ddforumart0_.del_flag as del_fla17_95_0_, ddforumart0_.img_url as img_url18_95_0_, ddforumart0_.is_anonymous as is_anon19_95_0_, ddforumart0_.is_del_allow as is_del_20_95_0_, ddforumart0_.is_hot as is_hot21_95_0_, ddforumart0_.isqa as isqa22_95_0_, ddforumart0_.is_top as is_top23_95_0_, ddforumart0_.like_count as like_co24_95_0_, ddforumart0_.modify_by as modify_25_95_0_, ddforumart0_.modify_date as modify_26_95_0_, ddforumart0_.pick_date as pick_da27_95_0_, ddforumart0_.plateid as plateid28_95_0_, ddforumart0_.plate_title as plate_t29_95_0_, ddforumart0_.qatype as qatype30_95_0_, ddforumart0_.tags as tags31_95_0_, ddforumart0_.user_code as user_co32_95_0_, ddforumart0_.user_infoid as user_in33_95_0_, ddforumart0_.user_name as user_na34_95_0_, ddforumart0_.view_count as view_co35_95_0_ from dd_forum_article ddforumart0_ where ddforumart0_.articleid=?
  606.  
  607. Caused by: com.microsoft.sqlserver.jdbc.SQLServerException: Invalid Column name 'admin_pick_date'
  608. at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDatabaseError(SQLServerException.java:216)
  609. at com.microsoft.sqlserver.jdbc.SQLServerStatement.getNextResult(SQLServerStatement.java:1515)
  610. at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.doExecutePreparedStatement(SQLServerPreparedStatement.java:404)
  611. at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement$PrepStmtExecCmd.doExecute(SQLServerPreparedStatement.java:350)
  612. at com.microsoft.sqlserver.jdbc.TDSCommand.execute(IOBuffer.java:5696)
  613. at com.microsoft.sqlserver.jdbc.SQLServerConnection.executeCommand(SQLServerConnection.java:1715)
  614. at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeCommand(SQLServerStatement.java:180)
  615. at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeStatement(SQLServerStatement.java:155)
  616. at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.executeQuery(SQLServerPreparedStatement.java:285)
  617. at org.hibernate.engine.jdbc.internal.ResultSetReturnImpl.extract(ResultSetReturnImpl.java:70)
  618. ... 81 more
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement