我没有用java在mssql中插入列。我使用哪种方法,如何使用? 感谢
答案 0 :(得分:3)
我认为你可以简单地使用SQL DDL声明:
//st is a Java JDBC Statement object ...
st.executeUpdate("ALTER TABLE yourtable ADD yourcolumn int");
答案 1 :(得分:0)
加载驱动程序,建立连接。
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
Connection connection = DriverManager.getConnection("jdbc:sqlserver://servername;database=databasename;integratedSecurity=true");
创建一个语句并执行它。
Statement statement = connection .createStatement();
statement.executeUpdate("ALTER TABLE TableName ADD ColumnName DataType");