随笔分类 -  SQL

数据库知识
摘要:declare @a int, @b int, @str varchar(1000)set @a=1while(@a<=9)begin set @b=1 set @str='' while(@b<=@a) begin ... 阅读全文
posted @ 2015-04-06 23:24 星空夜 阅读(641) 评论(0) 推荐(0)
摘要:import java.sql.*;/** * SQL Server数据库连接类 * @author Administrator * */public class Sqlsdc { static int a = 0; public Connection sqlsdc(String... 阅读全文
posted @ 2015-01-19 21:42 星空夜 阅读(726) 评论(0) 推荐(0)
摘要:import java.sql.*; /** * java 连接sqlserver数据库语句 * @author Administrator * */ public class Main { public static void main(St... 阅读全文
posted @ 2015-01-16 07:12 星空夜 阅读(551) 评论(0) 推荐(0)